Files
stm32_rust/stm32u5-blinky/.vscode/settings.json
2025-10-07 11:19:43 +02:00

10 lines
372 B
JSON

{
// override the default setting (`cargo check --all-targets`) which produces the following error
// "can't find crate for `test`" when the default compilation target is a no_std target
// with these changes RA will call `cargo check --bins` on save
"rust-analyzer.check.allTargets": false,
"rust-analyzer.check.extraArgs": [
"--bins"
]
}