We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f196640 commit 43b6a2dCopy full SHA for 43b6a2d
.devcontainer/devcontainer.json
@@ -0,0 +1,22 @@
1
+// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2
+// README at: https://github.com/devcontainers/templates/tree/main/src/rust
3
+{
4
+ "name": "Rust",
5
+ // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6
+ "image": "mcr.microsoft.com/devcontainers/rust:1-1-bullseye",
7
+ // Configure tool-specific properties.
8
+ "customizations": {
9
+ "codespaces": {
10
+ "openFiles": [
11
+ "README.md"
12
+ ]
13
+ },
14
+ "vscode": {
15
+ "extensions": [
16
+ "rust-lang.rust-analyzer"
17
18
+ }
19
20
+ // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
21
+ // "remoteUser": "root"
22
+}
0 commit comments