LinuxCommandLibrary

rustup-toolchain

Manage Rust toolchains.

TLDR

Install or update a given toolchain

$ rustup install [toolchain]
copy


Uninstall a toolchain
$ rustup uninstall [toolchain]
copy


List installed toolchains
$ rustup list
copy


Create a custom toolchain by symlinking to a directory
$ rustup link [custom_toolchain_name] [path/to/directory]
copy

Copied to clipboard