grufkork-DownOnSpot/.vscode/launch.json
2021-10-11 02:12:22 +02:00

47 lines
No EOL
1,005 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'down_on_spot'",
"cargo": {
"args": [
"build",
"--bin=down_on_spot",
"--package=down_on_spot"
],
"filter": {
"name": "down_on_spot",
"kind": "bin"
}
},
"args": [
"https://open.spotify.com/track/2Ju1xUOXSS1C6GOvlTHXUp?si=60e759a084d2470d"
],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'down_on_spot'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=down_on_spot",
"--package=down_on_spot"
],
"filter": {
"name": "down_on_spot",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}