Skip to content

Instantly share code, notes, and snippets.

@iqbalmineraltown
Last active January 23, 2020 06:22
Show Gist options
  • Save iqbalmineraltown/db392fc4b1ab4802043a46dc7b5b2b1b to your computer and use it in GitHub Desktop.
Save iqbalmineraltown/db392fc4b1ab4802043a46dc7b5b2b1b to your computer and use it in GitHub Desktop.
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"program": "${workspaceRoot}/target/debug/${workspaceRootFolderName}",
"args": [],
"cwd": "${workspaceRoot}",
"sourceLanguages": [
"rust"
],
"terminal": "console",
"preLaunchTask": "cargo build"
}
]
}
{
"version": "2.0.0",
"tasks": [
{
"label": "cargo build",
"type": "cargo",
"subcommand": "build",
"problemMatcher": [
"$rustc"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment