2020-09-22 16:03:43 +00:00
|
|
|
{
|
|
|
|
"editor.formatOnSave": true,
|
2021-05-02 00:19:14 +00:00
|
|
|
"rust-analyzer.checkOnSave.allFeatures": false,
|
|
|
|
"rust-analyzer.checkOnSave.allTargets": false,
|
2021-06-07 01:21:09 +00:00
|
|
|
"rust-analyzer.cargo.target": "thumbv7em-none-eabi",
|
2021-07-14 19:58:07 +00:00
|
|
|
"rust-analyzer.cargo.features": [
|
|
|
|
// These are needed to prevent embassy-net from failing to build
|
|
|
|
"embassy-net/medium-ethernet",
|
|
|
|
"embassy-net/tcp"
|
|
|
|
],
|
2021-05-02 00:19:14 +00:00
|
|
|
"rust-analyzer.procMacro.enable": true,
|
2021-07-13 03:47:26 +00:00
|
|
|
"rust-analyzer.cargo.runBuildScripts": true,
|
2021-05-02 00:19:14 +00:00
|
|
|
"files.watcherExclude": {
|
|
|
|
"**/.git/objects/**": true,
|
|
|
|
"**/.git/subtree-cache/**": true,
|
2021-05-14 02:06:07 +00:00
|
|
|
"**/target/**": true
|
2021-06-25 01:38:03 +00:00
|
|
|
},
|
|
|
|
"git.ignoreLimitWarning": true
|
2021-02-02 04:14:52 +00:00
|
|
|
}
|