Files
rustdoku/.vscode/launch.json
T

28 lines
799 B
JSON
Raw Normal View History

2024-10-15 22:45:44 -05:00
{
// 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 unit tests in library 'rustdoku'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=rustdoku"
],
"filter": {
"name": "rustdoku",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
2024-10-20 20:50:49 -05:00
}