A personal journey to master the Rust programming language by building 50 projects, ranging from simple scripts to complex systems utilities.
This repository is organized as a Cargo Workspace. All projects share a single target directory to save disk space and compilation time.
Since this is a workspace, you must specify which package to run using the -p flag:
# General syntax
cargo run -p <project-name>
# Example
cargo run -p guessing-game-02