This repository is a Rust workspace containing multiple projects for learning and practice. Each project is structured as a standalone Rust binary and is managed under a common workspace.
- Rust and Cargo: Ensure you have Rust installed (version 1.60+ recommended).
-
Clone the repository:
git clone https://github.com/your-username/your-repo-name.git cd your-repo-name
-
Ensure all dependencies are installed:
cargo check
To build all the projects in the workspace:
cargo build
cargo run -p <project-name>
cargo run -p hello_world