2020-09-22 18:03:43 +02:00
|
|
|
{
|
|
|
|
"editor.formatOnSave": true,
|
2021-07-15 05:43:06 +02:00
|
|
|
"rust-analyzer.assist.importEnforceGranularity": true,
|
|
|
|
"rust-analyzer.assist.importGranularity": "module",
|
2021-05-02 02:19:14 +02:00
|
|
|
"rust-analyzer.checkOnSave.allFeatures": false,
|
|
|
|
"rust-analyzer.checkOnSave.allTargets": false,
|
2022-02-12 00:24:04 +01:00
|
|
|
"rust-analyzer.checkOnSave.noDefaultFeatures": true,
|
|
|
|
"rust-analyzer.cargo.allFeatures": false,
|
2021-07-15 05:43:06 +02:00
|
|
|
"rust-analyzer.cargo.noDefaultFeatures": true,
|
2021-11-27 03:06:53 +01:00
|
|
|
"rust-analyzer.experimental.procAttrMacros": false,
|
2022-02-12 00:24:04 +01:00
|
|
|
"rust-analyzer.procMacro.enable": true,
|
|
|
|
"rust-analyzer.cargo.runBuildScripts": true,
|
2021-09-11 01:53:53 +02:00
|
|
|
"rust-analyzer.cargo.target": "thumbv7em-none-eabi",
|
2021-07-14 21:58:07 +02:00
|
|
|
"rust-analyzer.cargo.features": [
|
|
|
|
// These are needed to prevent embassy-net from failing to build
|
2021-11-27 02:21:53 +01:00
|
|
|
//"embassy-net/medium-ethernet",
|
|
|
|
//"embassy-net/tcp",
|
|
|
|
//"embassy-net/pool-16",
|
2022-02-12 00:24:04 +01:00
|
|
|
"nightly",
|
2021-11-27 02:21:53 +01:00
|
|
|
],
|
|
|
|
"rust-analyzer.linkedProjects": [
|
2021-12-09 00:40:03 +01:00
|
|
|
// Declare for the target you wish to develop
|
2021-12-10 02:33:45 +01:00
|
|
|
"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",
|
2021-07-14 21:58:07 +02:00
|
|
|
],
|
2021-02-02 05:14:52 +01:00
|
|
|
}
|