Mitgliederladen/hello_world/.vscode/launch.json
2023-06-02 15:06:11 +02:00

20 lines
468 B
JSON

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