https://github.com/wiris/rust-workshop
Repository for the practical part of the Rust workshop.
https://github.com/wiris/rust-workshop
Last synced: 2 months ago
JSON representation
Repository for the practical part of the Rust workshop.
- Host: GitHub
- URL: https://github.com/wiris/rust-workshop
- Owner: wiris
- Created: 2022-03-31T08:37:13.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-02T08:34:50.000Z (about 2 years ago)
- Last Synced: 2025-01-27T22:45:58.324Z (4 months ago)
- Language: Rust
- Size: 54.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust Workshop
[](https://www.wiris.com/es/) [](https://www.rust-lang.org/tools/install)
Welcome to our collection of Rust workshops!
## About
Here you will find all those workshops we did develop for anyone interested in learning [Rust](https://www.rust-lang.org/) for the very first time.
The whole repository has been organized as a [Cargo workspace](https://doc.rust-lang.org/book/ch14-03-cargo-workspaces.html), 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.).
## Setup
### Install Rust
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:
```bash
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
```### Upgrade Rust
In case you already have Rust installed, make sure you got the latest stable version by running the following command:
```bash
rustup update
```### Clone the repo
We assume you already have [git](https://git-scm.com/) installed on your computer. If this is not the case, just follow the [download instructions](https://git-scm.com/downloads) before continuing.
With the following command line, you will be able to clone up our workshops' repository in your local machine:
```bash
git clone https://github.com/wiris/rust-workshop.git
```Great! You are ready to code 💻