blob: 643021aaa83e622a4568ebc61fec44148037802a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{
"image": "mcr.microsoft.com/devcontainers/rust:1",
"updateContentCommand": "cargo build",
"remoteEnv": {
"PATH": "${containerEnv:PATH}:${containerWorkspaceFolder}/target/debug"
},
"customizations": {
"vscode": {
"extensions": [
"rust-lang.rust-analyzer"
]
}
}
}
|