rustup set
Alter rustup
settings.
More information: https://rust-lang.github.io/rustup.
- Set the default host triple:
rustup set default-host
host_triple
- Set the default profile (
minimal
includes onlyrustc
,rust-std
andcargo
, whereasdefault
addsrust-docs
,rustfmt
andclippy
):
rustup set profile
minimal|default
- Set whether
rustup
should update itself when runningrustup update
:
rustup set auto-self-update
enable|disable|check-only