rustup automatically determines which toolchain to use when one of the
installed commands like rustc is executed. There are several ways to control
and override which toolchain is used:
- A toolchain override shorthand used on the command-line, such as
cargo +beta. - The
RUSTUP_TOOLCHAINenvironment variable. - A directory override, set with the
rustup overridecommand. - The
rust-toolchain.tomlfile. - The default toolchain.
The toolchain is chosen in the order listed above, using the first one that is specified. There are a number of caveats though:
- Directory overrides and
rust-toolchain.tomloverrides are determined together. Since each of them is bounded to the directory it was set in, to find out which of them to use,rustupwalks up the directory tree towards the filesystem root, and whichever has its bounded directory closest to the current directory wins. If that same closest directory has both overrides, thenrust-toolchain.tomlis overridden by the directory override. - When overriding a
rust-toolchain.toml, itscomponentsandtargetswill be carried over to the new toolchain.
To verify which toolchain is active, you can use rustup show,
which will also try to install the corresponding
toolchain if the current one has not been installed according to the above rules.
(Please note that this behavior is subject to change, as detailed in issue #1397.)
The rustup toolchain proxies can be instructed directly to use a specific
toolchain, a convenience for developers who often test different toolchains.
If the first argument to cargo, rustc or other tools in the toolchain
begins with +, it will be interpreted as a rustup toolchain name, and that
toolchain will be preferred, as in
cargo +beta testDirectories can be assigned their own Rust toolchain with rustup override.
When a directory has an override then any time rustc or cargo is run
inside that directory, or one of its child directories, the override toolchain
will be invoked.
To use to a specific nightly for a directory:
rustup override set nightly-2014-12-18Or a specific stable release:
rustup override set 1.0.0To see the active toolchain use rustup show. To remove the override and use
the default toolchain again, rustup override unset.
The per-directory overrides are stored in a configuration file in rustup's
home directory.
Some projects find themselves 'pinned' to a specific release of Rust and want this information reflected in their source repository. This is most often the case for nightly-only software that pins to a revision from the release archives.
In these cases the toolchain can be named in the project's directory in a file
called rust-toolchain.toml or rust-toolchain. If both files are present in
a directory, the latter is used for backwards compatibility. The files use the
TOML format and have the following layout:
[toolchain]
channel = "nightly-2020-07-10"
components = [ "rustfmt", "rustc-dev" ]
targets = [ "wasm32-unknown-unknown", "thumbv2-none-eabi" ]
profile = "minimal"The [toolchain] section is mandatory, and at least one property must be
specified. channel and path are mutually exclusive.
For backwards compatibility, rust-toolchain files also support a legacy
format that only contains a toolchain name without any TOML encoding, e.g.
just nightly-2021-01-21. The file has to be encoded in US-ASCII in this case
(if you are on Windows, check the encoding and that it does not start with a
BOM). The legacy format is not available in rust-toolchain.toml files.
If you see the following error (when running rustc, cargo or other command)
error: invalid channel name '[toolchain]' in '/PATH/TO/DIRECTORY/rust-toolchain'
it means you're running rustup pre-1.23.0 and trying to interact with a project
that uses the new TOML encoding in the rust-toolchain file. You need to upgrade
rustup to 1.23.0+.
The rust-toolchain.toml/rust-toolchain files are suitable to check in to
source control. If that's done, Cargo.lock should probably be tracked too if
the toolchain is pinned to a specific release, to avoid potential compatibility
issues with dependencies.
The channel setting specifies which toolchain to use. The value is a
string in the following form:
<channel>[-<date>]
<channel> = stable|beta|nightly|<major.minor.patch>
<date> = YYYY-MM-DD
Note that this is a more restricted form than rustup toolchains
generally, and cannot be used to specify custom toolchains or
host-specific toolchains.
The path setting allows a custom toolchain to be used. The value is a
path string. A relative path is resolved relative to the location of the
rust-toolchain.toml file.
Since a path directive directly names a local toolchain, other options
like components, targets, and profile have no effect.
channel and path are mutually exclusive, since a path already
points to a specific toolchain.
The profile setting names a group of components to be installed. The
value is a string. The valid options are: minimal, default, and
complete. See profiles for details of each.
Note that if not specified, the default profile is not necessarily
used, as a different default profile might have been set with rustup set profile.
The components setting contains a list of additional components to
install. The value is a list of strings. See components for a list of
components. Note that different toolchains may have different components
available.
The components listed here are additive with the current profile.
The targets setting contains a list of platforms to install for
cross-compilation. The value is a list of strings.
The host platform is automatically included; the targets listed here are additive.
If no other overrides are set, the global default toolchain will be used. This
default can be chosen when rustup is installed. The rustup default
command can be used to set and query the current default. Run rustup default
without any arguments to print the current default. Specify a toolchain as an
argument to change the default:
rustup default nightly-2020-07-27