2022-05-14 23:44:09 +08:00
|
|
|
{
|
|
|
|
// Prevent "can't find crate for `test`" error on no_std
|
|
|
|
// Ref: https://github.com/rust-lang/vscode-rust/issues/729
|
|
|
|
// For vscode-rust plugin users:
|
|
|
|
"rust.target": "riscv64gc-unknown-none-elf",
|
|
|
|
"rust.all_targets": false,
|
|
|
|
// For Rust Analyzer plugin users:
|
|
|
|
"rust-analyzer.cargo.target": "riscv64gc-unknown-none-elf",
|
2022-07-14 09:37:06 +08:00
|
|
|
"rust-analyzer.checkOnSave.allTargets": false,
|
2022-12-31 10:36:35 +08:00
|
|
|
// "rust-analyzer.cargo.features": [
|
|
|
|
// "board_qemu"
|
|
|
|
// ]
|
2022-07-14 09:37:06 +08:00
|
|
|
}
|