aboutsummaryrefslogtreecommitdiff
path: root/.vscode/settings.json
blob: ed01f7557e4f52a62f6329173155337d12712b72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "editor.formatOnSave": true,
  "rust-analyzer.assist.importEnforceGranularity": true,
  "rust-analyzer.assist.importGranularity": "module",
  "rust-analyzer.checkOnSave.allFeatures": false,
  "rust-analyzer.checkOnSave.allTargets": false,
  "rust-analyzer.cargo.noDefaultFeatures": true,
  "rust-analyzer.checkOnSave.noDefaultFeatures": true,
  //"rust-analyzer.cargo.target": "thumbv7em-none-eabi",
  "rust-analyzer.cargo.features": [
    // These are needed to prevent embassy-net from failing to build
    "embassy-net/medium-ethernet",
    "embassy-net/tcp",
  ],
  "rust-analyzer.procMacro.enable": true,
  "rust-analyzer.cargo.runBuildScripts": true,
  "files.watcherExclude": {
    "**/.git/objects/**": true,
    "**/.git/subtree-cache/**": true,
    "**/target/**": true
  },
  "git.ignoreLimitWarning": true
}