Skip to content

Instantly share code, notes, and snippets.

@lannex
Created August 5, 2020 05:39
Show Gist options
  • Save lannex/879fc154c008b02c9d31a06c1023c638 to your computer and use it in GitHub Desktop.
Save lannex/879fc154c008b02c9d31a06c1023c638 to your computer and use it in GitHub Desktop.
Rust Debug for VSCode
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Rust",
"program": "${workspaceRoot}/target/debug/${workspaceRootFolderName}",
"args": [],
"cwd": "${workspaceFolder}",
"sourceLanguages": ["rust"],
"preLaunchTask": "rust: cargo run",
"terminal": "integrated"
}
]
}
{
"tasks": [
{
"type": "cargo",
"subcommand": "",
"problemMatcher": ["$rustc"],
"label": "rust: cargo run"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment