We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
RUSTUP_TOOLCHAIN=stable
1 parent 668abc2 commit bc090bdCopy full SHA for bc090bd
.vscode/settings.json
@@ -33,7 +33,11 @@
33
"--all-features",
34
],
35
"rust-analyzer.showUnlinkedFileNotification": false,
36
-
+ "rust-analyzer.cargo.extraEnv": {
37
+ // rust-analyzer is only guaranteed to support the latest stable version of Rust. Use it instead of whatever is
38
+ // specified in rust-toolchain.
39
+ "RUSTUP_TOOLCHAIN": "stable"
40
+ },
41
// Uncomment the following options and restart rust-analyzer to get it to check code behind `cfg(target_arch=wasm32)`.
42
// Don't forget to put it in a comment again before committing.
43
// "rust-analyzer.cargo.target": "wasm32-unknown-unknown",
0 commit comments