]> patrickod personal git archive - tincan.git/blob - rs-lorachat/.vscode/settings.json
specify usb,unproven as default features to stop CLI arg repetition
[tincan.git] / rs-lorachat / .vscode / settings.json
1 {
2     // override the default setting (`cargo check --all-targets`) which produces the following error
3     // "can't find crate for `test`" when the default compilation target is a no_std target
4     // with these changes RA will call `cargo check --bins` on save
5     "rust-analyzer.checkOnSave.allTargets": false,
6     "rust-analyzer.checkOnSave.extraArgs": [
7         "--target",
8         "thumbv6m-none-eabi"
9     ]
10 }