Rust-Programming-Cookbook/Chapter01/debug-me/launch.json

15 wiersze
354 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"program": "${workspaceRoot}/target/debug/${workspaceRootFolderName}",
"args": [],
"cwd": "${workspaceRoot}",
"sourceLanguages": ["rust"]
}
]
}