{
"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}"
}
]
}