rCore-Tutorial-v3/.vscode/settings.json

13 lines
473 B
JSON
Raw Normal View History

{
// 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",
"rust-analyzer.checkOnSave.allTargets": false,
2022-12-31 06:36:35 +04:00
// "rust-analyzer.cargo.features": [
// "board_qemu"
// ]
}