Hello embedded Rust
21 Mar 2024 • Sebastian Estay
Install Rust using rustup
Install rustup, Rust’s official toolchain manager. This will install (1) the Rust compiler rustc, and (2) the Rust package manager cargo.
Update rustup
and check if everything is ok:
rustup update
rustc --version
cargo --version
IDE
Get an IDE or text editor. I’ll be using Sublime Text with the Rust Enhanced package to get extended support for Rust. Here is a guide about how to install Rust Enhanced.