Files
static-web-server/.vscode/launch.json
José Quintana 6cddc5b97c init
2018-12-20 00:16:06 +01:00

44 lines
1.0 KiB
JSON

{
// Use IntelliSense para saber los atributos posibles.
// Mantenga el puntero para ver las descripciones de los existentes atributos
// Para más información, visite: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'rust-learning'",
"cargo": {
"args": [
"build",
"--bin=rust-learning",
"--package=rust-learning"
],
"filter": {
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'rust-learning'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=rust-learning",
"--package=rust-learning"
],
"filter": {
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}