1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/rustup.md

34 lines
799 B
Markdown
Raw Normal View History

2017-11-27 09:58:49 -05:00
# rustup
> Install, manage, and update Rust toolchains.
> Some subcommands, such as `toolchain`, `target`, `update`, etc. have their own usage documentation.
> More information: <https://rust-lang.github.io/rustup>.
2017-11-27 09:58:49 -05:00
- Install the nightly toolchain for your system:
`rustup install nightly`
2017-11-30 09:51:01 -05:00
- Switch the default toolchain to nightly so that the `cargo` and `rustc` commands will use it:
2017-11-27 09:58:49 -05:00
`rustup default nightly`
- Use the nightly toolchain when inside the current project but leave global settings unchanged:
2018-02-18 13:35:09 -05:00
`rustup override set nightly`
2017-11-27 09:58:49 -05:00
- Update all toolchains:
`rustup update`
- List installed toolchains:
`rustup show`
- Run `cargo build` with a certain toolchain:
2017-11-27 09:58:49 -05:00
`rustup run {{toolchain}} cargo build`
2021-07-29 15:09:05 +02:00
- Open the local Rust documentation in the default web browser:
2021-07-29 15:09:05 +02:00
`rustup doc`