Getting Started
Install Rust
Follow the official documentation to Install Rust using rustup
.
In case a nightly toolchain is needed, use the --allow-downgrade
option on install.
# add nightly toolchain
rustup toolchain install nightly --allow-downgrade
# make it the default
rustup default nightly
For more advanced setups consult the rustup documentation
Editor Support
Setup the rust-analyzer or the InteliJ Rust plugin, depending on your editor of choice.