1
0
Fork 0
vkgy_bot_discord/.vscode/launch.json
2022-06-16 23:13:58 +02:00

45 lines
No EOL
1.1 KiB
JSON

{
// Utilisez IntelliSense pour en savoir plus sur les attributs possibles.
// Pointez pour afficher la description des attributs existants.
// Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'data_extractor'",
"cargo": {
"args": [
"build",
"--bin=data_extractor",
"--package=data_extractor"
],
"filter": {
"name": "data_extractor",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'data_extractor'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=data_extractor",
"--package=data_extractor"
],
"filter": {
"name": "data_extractor",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}