2019-05-01 13:00:29 -07:00
|
|
|
{
|
|
|
|
|
"name": "Rust",
|
|
|
|
|
"dockerFile": "Dockerfile",
|
|
|
|
|
"extensions": [
|
|
|
|
|
"rust-lang.rust",
|
|
|
|
|
"bungcip.better-toml",
|
|
|
|
|
"vadimcn.vscode-lldb"
|
|
|
|
|
],
|
|
|
|
|
"runArgs": [
|
2019-08-05 23:18:44 +00:00
|
|
|
// Comment out the next line to run as root instead. Linux users,
|
|
|
|
|
// update Dockerfile with your user's UID/GID if not 1000.
|
|
|
|
|
"-u", "vscode",
|
|
|
|
|
|
|
|
|
|
"--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined"
|
2019-06-03 19:55:45 -07:00
|
|
|
],
|
|
|
|
|
"settings": {
|
2019-08-05 23:18:44 +00:00
|
|
|
"lldb.adapterType": "bundled",
|
2019-08-23 19:28:42 +00:00
|
|
|
"lldb.executable": "/usr/bin/lldb",
|
2019-06-21 02:20:07 +00:00
|
|
|
"terminal.integrated.shell.linux": "/bin/bash"
|
2019-06-03 19:55:45 -07:00
|
|
|
}
|
2019-05-01 13:00:29 -07:00
|
|
|
}
|