aboutsummaryrefslogtreecommitdiff
path: root/.vscode/settings.json
blob: 79433a7c9f15480078180ae141f8b116259cb4bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
  "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.checkOnSave.noDefaultFeatures": true,
  "rust-analyzer.cargo.allFeatures": false,
  "rust-analyzer.cargo.noDefaultFeatures": true,
  "rust-analyzer.experimental.procAttrMacros": false,
  "rust-analyzer.procMacro.enable": true,
  "rust-analyzer.cargo.runBuildScripts": 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",
    //"embassy-net/pool-16",
    "nightly",
  ],
  "rust-analyzer.linkedProjects": [
    // Declare for the target you wish to develop
    "examples/nrf/Cargo.toml",
    // "examples/rp/Cargo.toml",
    // "examples/std/Cargo.toml",
    // "examples/stm32f0/Cargo.toml",
    // "examples/stm32f1/Cargo.toml",
    // "examples/stm32f4/Cargo.toml",
    // "examples/stm32f7/Cargo.toml",
    // "examples/stm32g0/Cargo.toml",
    // "examples/stm32g4/Cargo.toml",
    // "examples/stm32h7/Cargo.toml",
    // "examples/stm32l0/Cargo.toml",
    // "examples/stm32l1/Cargo.toml",
    // "examples/stm32l4/Cargo.toml",
    // "examples/stm32u5/Cargo.toml",
    // "examples/stm32wb55/Cargo.toml",
    // "examples/stm32wl55/Cargo.toml",
    // "examples/wasm/Cargo.toml",
  ],
}