Rust
Rust is a systems programming language that runs blazingly fast, prevents segfaults, and guarantees thread safety.
Installation
For installation, it's advised to use rustup
as it will (among other things) allow you to switch between versions of Rust without having to download anything additional.
Use rustup to install the Rust compiler (rustc) and the Rust package manager (cargo).
Above command will add $HOME/.cargo/env
to ~/.zshenv
~/.profile
and ~/.bash_profile
files. we don't need this as we add source "$HOME/.cargo/env"
to ~/my/extra.zsh
file.
when prompted Modify PATH variable? (Y/n)
enter n
To verify you can run:
To upgrade rustup
Enable tab completion for Zsh
To update rust
Last updated