2024-09-13 02:37:46 +03:00
|
|
|
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
|
|
|
// README at: https://github.com/devcontainers/templates/tree/main/src/rust
|
|
|
|
{
|
|
|
|
"name": "Azure SDK for Rust",
|
2024-09-23 19:22:09 +03:00
|
|
|
"build": {
|
|
|
|
"dockerfile": "Dockerfile"
|
|
|
|
},
|
2024-09-13 02:37:46 +03:00
|
|
|
"onCreateCommand": ".devcontainer/oncreate",
|
|
|
|
"features": {
|
|
|
|
"ghcr.io/devcontainers/features/azure-cli:1": {},
|
|
|
|
"ghcr.io/devcontainers/features/github-cli:1": {},
|
|
|
|
"ghcr.io/devcontainers/features/sshd:1": {}
|
|
|
|
},
|
|
|
|
"customizations": {
|
|
|
|
"vscode": {
|
|
|
|
"extensions": [
|
|
|
|
"tamasfe.even-better-toml",
|
|
|
|
"editorconfig.editorconfig",
|
|
|
|
"rust-lang.rust-analyzer",
|
|
|
|
"streetsidesoftware.code-spell-checker",
|
|
|
|
"vadimcn.vscode-lldb"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2024-09-23 19:22:09 +03:00
|
|
|
}
|