Welcome to our collection of Rust workshops!
Here you will find all those workshops we did develop for anyone interested in learning Rust for the very first time.
The whole repository has been organized as a Cargo workspace, so each workshop is located inside its own directory as rust-workshop-xx, where xx is the year when the workshop was created (22, 23, etc.).
First things first, you need to have the Rust toolchain installed on your computer. Doing so is as easy as executing the following command line:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | shIn case you already have Rust installed, make sure you got the latest stable version by running the following command:
rustup updateWe assume you already have git installed on your computer. If this is not the case, just follow the download instructions before continuing.
With the following command line, you will be able to clone up our workshops' repository in your local machine:
git clone https://github.com/wiris/rust-workshop.gitGreat! You are ready to code 💻