Rust nightly
nightly-Toolchain lokal im Projektverzeichnis aktivieren
rustup override set nightly
nightly build für spezische App einstellen
cargo +nightly build --release
nightly build als Default einstellen
rustup default nightly
stable build als Default einstellen
rustup default stable
VSCode rust-analyzer auf nightly einstellen
Ein toolchain-file mit Namen rust-toolchain.toml im Projektverzeichnis erstellen:
[toolchain] channel = "nightly"
https://rust-analyzer.github.io/
Update Toolchains
rustup update
Toolchains anzeigen
rustup show
Default host: x86_64-pc-windows-msvc
rustup home: C:\Users\XX\.rustup
installed toolchains
--------------------
stable-x86_64-pc-windows-msvc (default)
nightly-x86_64-pc-windows-msvc
active toolchain
----------------
stable-x86_64-pc-windows-msvc (default)
rustc 1.62.1 (e092d0b6b 2022-07-16)