Files
rust/.vscode/launch.json
Jonathan Carter 0207c629b9 Initial commit
2019-05-01 13:00:29 -07:00

23 lines
543 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable",
"cargo": {
"args": [
"build",
"--bin=hello_remote_world",
"--package=hello_remote_world",
"--manifest-path=Cargo.toml"
],
"filter": {
"kind": "bin"
}
},
"args": []
}
]
}