{
"name": "Rust Container",
"build": {
"dockerfile": "Dockerfile"
},
"containerEnv": {
"INIT_LIB": ""
},
"postCreateCommand": "bash .devcontainer/post-create.sh",
"mounts": [
{
"source": "${localEnv:HOME}/.gitconfig",
"target": "/home/vscode/.gitconfig",
"type": "bind",
"readonly": true
},
{
"source": "${localEnv:HOME}/.ssh/",
"target": "/home/vscode/.ssh/",
"type": "bind",
"readonly": true
}
],
"remoteUser": "vscode",
"customizations": {
"vscode": {
"settings": {
"lldb.executable": "/usr/bin/lldb",
"files.watcherExclude": {
"**/target/**": true
},
"rust-analyzer.checkOnSave.command": "clippy"
},
"extensions": [
"vadimcn.vscode-lldb",
"mutantdino.resourcemonitor",
"rust-lang.rust-analyzer",
"tamasfe.even-better-toml",
"serayuzgur.crates"
]
}
},
}