LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

rustup-set

Configure rustup settings and defaults

TLDR

Set the default host triple
$ rustup set default-host [x86_64-unknown-linux-gnu]
copy
Set the installation profile to minimal
$ rustup set profile minimal
copy
Set the installation profile to default (includes rustfmt and clippy)
$ rustup set profile default
copy
Enable automatic self-updates
$ rustup set auto-self-update enable
copy
Disable automatic self-updates
$ rustup set auto-self-update disable
copy

SYNOPSIS

rustup set setting value

DESCRIPTION

rustup set configures rustup settings that affect default behavior for new toolchain installations and updates. The profile setting controls which components are installed by default, and the auto-self-update setting controls whether rustup updates itself when running `rustup update`.

SUBCOMMANDS

default-host triple

Set the default host triple for toolchain installations (e.g., x86_64-unknown-linux-gnu).
profile name
Set the default component installation profile. minimal includes only rustc, rust-std, and cargo. default adds rust-docs, rustfmt, and clippy. complete installs all available components.
auto-self-update mode
Control rustup's automatic self-update behavior: enable, disable, or check-only.

SEE ALSO

Copied to clipboard
Kai