Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Oct 10, 2023
1 parent dd0ccdf commit 85c5c3d
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
{
"image": "mcr.microsoft.com/devcontainers/rust:latest"
"image": "mcr.microsoft.com/devcontainers/rust:latest",
"features": {
"ghcr.io/devcontainers/features/rust:1": {
"version": "1.66",
"profile": "default"
}
},
"postCreateCommand": "cargo --version",
// Use 'mounts' to make the cargo cache persistent in a Docker Volume.
"mounts": [
{
"source": "devcontainer-cargo-cache-${devcontainerId}",
"target": "/usr/local/cargo",
"type": "volume"
}
]
}

0 comments on commit 85c5c3d

Please sign in to comment.