
rustup
List of commands for rustup:
-
rustup:tldr:18080 rustup: Run cargo build with a certain toolchain.$ rustup run ${toolchain_name} cargo buildtry on your machineexplain this command
-
rustup:tldr:1dd82 rustup: Open the local rust documentation in the default web browser.$ rustup doctry on your machineexplain this command
-
rustup:tldr:4cd74 rustup: Install the nightly toolchain for your system.$ rustup install nightlytry on your machineexplain this command
-
rustup:tldr:4f2f3 rustup: List installed toolchains.$ rustup showtry on your machineexplain this command
-
rustup:tldr:630bf rustup: Switch the default toolchain to nightly so that the `cargo` and `rustc` commands will use it.$ rustup default nightlytry on your machineexplain this command
-
rustup:tldr:d21f0 rustup: Use the nightly toolchain when inside the current project, but leave global settings unchanged.$ rustup override set nightlytry on your machineexplain this command
-
rustup:tldr:e96f5 rustup: Update all toolchains.$ rustup updatetry on your machineexplain this command