]> patrickod personal git archive - tincan.git/blob - settings.json
0a5b8c6dbd627790f17ed7f0146c7f05302e774d
[tincan.git] / 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 }