mirror of
https://github.com/aljazceru/goose.git
synced 2025-12-29 03:54:21 +01:00
28 lines
631 B
JSON
28 lines
631 B
JSON
{
|
|
"name": "Rust Dev Container",
|
|
"build": {
|
|
"dockerfile": "Dockerfile"
|
|
},
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/rust:1": {
|
|
"version": "stable"
|
|
}
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"rust-lang.rust-analyzer",
|
|
"vadimcn.vscode-lldb"
|
|
]
|
|
},
|
|
"settings": {
|
|
"terminal.integrated.defaultProfile.linux": "/bin/bash"
|
|
}
|
|
},
|
|
"postCreateCommand": "cargo build",
|
|
"remoteUser": "vscode",
|
|
"mounts": [
|
|
"source=${localWorkspaceFolder}/crates,target=/workspace/crates,type=bind"
|
|
]
|
|
}
|
|
|