rustup:add page (#1690)

This commit is contained in:
Starbeamrainbowlabs
2017-11-30 15:19:43 +00:00
committed by GitHub

24
pages/common/rustup.md Normal file
View File

@@ -0,0 +1,24 @@
# rustup
> Rust toolchain installer.
> Install, manage, and update Rust toolchains.
- Install the nightly toolchain for your system:
`rustup install nightly`
- Switch the default toolchain to nightly so that the `cargo` and `rustc` commands will use it:
`rustup default nightly`
- Update all toolchains:
`rustup update`
- List installed toolchains:
`rustup show`
- Run cargo build with a certain toolchain:
`rustup run {{toolchain_name}} cargo build`