chore: dev container config

This commit is contained in:
Zixuan Chen 2022-11-15 11:14:47 +00:00
parent 24de193ea4
commit f150b6f4b1
2 changed files with 7 additions and 2 deletions

View file

@ -4,7 +4,7 @@
"features": {
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/devcontainers-contrib/features/deno:1": {}
}
},
// Features to add to the dev container. More info: https://containers.dev/implementors/features.
// "features": {},
@ -13,7 +13,7 @@
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "rustc --version",
"postCreateCommand": "bash scripts/install-dev-tools.sh"
// Configure tool-specific properties.
// "customizations": {},

View file

@ -0,0 +1,5 @@
cargo install cargo-fuzz
cargo install cargo-nextest
cargo install cargo-crev
cargo install just
rustup component add clippy