Code written while reading the book "Rust Web Development" by Bastian Gruber.
git clone git@github.com:pmuens/rust-web-development.git
asdf install
- Run
cp .env.example .env
and update the file - Run
./docker.sh
in terminal #1 - Run
cargo run
in terminal #2 - Run a cURL command in terminal #3
asdf install
cargo init
cargo new <name> [--lib]
cargo build [--bin <binary>]
cargo clean
cargo test
cargo bench
cargo update
cargo add <name>
cargo search <name>
cargo run [--bin <binary>] [-- arg]
cargo doc [--open]
cargo fix
cargo fmt
cargo clippy
cargo check
cargo install <name>
cargo uninstall <name>
- Lib.rs
- Rust Language Cheat Sheet
- Rust By Example
- Rust Cookbook
- Comprehensive Rust
- The Rust Programming Language
- rust-lang/rustlings
- Rust Design Patterns
- Rust for Professionals
- The Rustonomicon
- The Rust Reference
- TheAlgorithms/Rust
- ctjhoa/rust-learning
- The Little Book of Rust Books
- A half-hour to learn Rust