{
"name": "Rust Development Container",
"image": "mcr.microsoft.com/devcontainers/rust:1-bookworm",
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {
"version": "latest"
}
},
"customizations": {
"vscode": {
"extensions": [
"rust-lang.rust-analyzer",
"tamasfe.even-better-toml",
"serayuzgur.crates",
"dustypomerleau.rust-syntax"
],
"settings": {
"rust-analyzer.check.command": "clippy",
"rust-analyzer.check.allTargets": true,
"[rust]": {
"editor.formatOnSave": true
}
}
}
},
"postCreateCommand": "rustc --version && cargo --version",
"remoteUser": "vscode"
}