mirror of
https://github.com/static-web-server/static-web-server.git
synced 2026-01-25 05:06:33 +00:00
44 lines
1.0 KiB
JSON
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}"
|
|
}
|
|
]
|
|
}
|