Mitgliederladen/hello_world/.vscode/launch.json

21 lines
468 B
JSON
Raw Normal View History

{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Cargo Run",
"cargo": {
"args": [
"run",
"--bin",
"${workspaceFolderBasename}"
]
},
"args": [],
"cwd": "${workspaceFolder}",
"preLaunchTask": "Cargo Build"
}
]
}