summaryrefslogtreecommitdiff
path: root/.devcontainer/devcontainer.json
blob: e1b2cec10bde5dcf348df6a418f26f6cf7cc4e75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "image": "mcr.microsoft.com/devcontainers/universal:2-linux",
  "waitFor": "onCreateCommand",
  "onCreateCommand": ".devcontainer/setup.sh",
  "updateContentCommand": "cargo build",
  "postCreateCommand": "",
  "postAttachCommand": {
    "server": "rustlings watch"
  },
  "customizations": {
    "vscode": {
      "extensions": [
        "rust-lang.rust-analyzer"
      ]
    }
  }
}