You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/docs/a2.installation.md
+16-5Lines changed: 16 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,22 @@ title: Installation
4
4
## Rustup
5
5
There are many ways to install Rust on your system. For the moment the official way to install Rust is using [Rustup](https://rustup.rs/).
6
6
7
-
[📖](https://github.com/rust-lang/rustup#rustup-the-rust-toolchain-installer) Rustup installs The Rust Programming Language from the official release channels, enabling you to easily switch between **stable, beta, and nightly** compilers and keep them updated. It makes **cross-compiling** simpler with binary builds of the standard library for common platforms.
8
-
9
-
[📖](https://github.com/rust-lang/rustup#installation) Rustup installs **`rustc`, `cargo`, `rustup`** and other standard tools to Cargo's `bin` directory. On Unix it is located at `$HOME/.cargo/bin` and on Windows at `%USERPROFILE%\.cargo\bin`. This is the same directory that `cargo install` will install Rust programs and Cargo plugins.
10
-
11
-
💡 More information can be found on the [Github repository of Rustup project](https://github.com/rust-lang/rustup#rustup-the-rust-toolchain-installer).
7
+
[📖](https://rust-lang.github.io/rustup/index.html) Rustup installs The Rust Programming Language from the official release channels, enabling you to easily switch between **stable, beta, and nightly** compilers and keep them updated. It makes **cross-compiling** simpler with binary builds of the standard library for common platforms.
8
+
9
+
[📖](https://rust-lang.github.io/rustup/installation/index.html) Rustup installs **`rustc`, `cargo`, `rustup`** and other standard tools to Cargo's `bin` directory. On Unix it is located at `$HOME/.cargo/bin` and on Windows at `%USERPROFILE%\.cargo\bin`. This is the same directory that `cargo install` will install Rust programs and Cargo plugins.
10
+
11
+
> 🔎 The main tools Rustup installs to the Cargo's `bin` directory,
12
+
> -`rustc`: The Rust compiler.
13
+
> -`cargo`: The Rust’s built-in package manager and the build system.
14
+
> -`rustup`: The Rust toolchain installer.
15
+
> -`rustfmt`: The Rust’s official tool of formatting Rust code according to style guidelines.
16
+
> -`cargo-fmt`: Helps to run `rustfmt` on whole Rust projects, including multi-crate workspaces.
17
+
> -`cargo-clippy`: A lint tool that provides extra checks for common mistakes and stylistic choices.
18
+
> -`cargo-miri`:An experimental Rust interpreter, which can be used for checking for undefined-behavior.
19
+
> -`rls`: A language server that provides support for editors and IDEs.
20
+
> -`rustdoc`: A local copy of the Rust documentation.
0 commit comments