mirror of
https://github.com/OMGeeky/rust-codespace.git
synced 2025-12-26 17:02:31 +01:00
32 lines
742 B
JSON
32 lines
742 B
JSON
{
|
|
"version": "0.2.0"
|
|
,"configurations": [
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Debug unit tests in lib",
|
|
"cargo": {
|
|
"args":[
|
|
"test",
|
|
"--no-run",
|
|
"--lib"
|
|
]
|
|
},
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Debug executable",
|
|
"cargo": {
|
|
"args":[
|
|
"build",
|
|
"--bin"
|
|
]
|
|
},
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}"
|
|
}
|
|
]
|
|
} |