The current stable release of Rust, updated every six weeks and backwards-compatible.
An easy way to install the stable binaries for Linux and Mac is to run this in your shell:
$ curl -sSf https://static.rust-lang.org/rustup.sh | sh
A beta of the upcoming stable release, intended for testing by crate authors. Updated as needed.
An easy way to install the beta binaries for Linux and Mac is to run this in your shell:
$ curl -sSf https://static.rust-lang.org/rustup.sh | sh -s -- --channel=beta
The current development branch. It includes unstable features that are not available in the betas or stable releases.
An easy way to install the nightly binaries for Linux and Mac is to run this in your shell:
$ curl -sSf https://static.rust-lang.org/rustup.sh | sh -s -- --channel=nightly
Discover other downloads in the archives.