Rust
- Rust by example
- Rust book
- Lifetime Video
- Writing FreeBSD Kernel Modules in Rust
- Rust Macro Workshop
- Learning Rust (coming from python) awesome comment
- Rust CLI tools: alternatives to grep, cat, find, top, etc.
Hello Summary
fn main() {
println!("Hello World!");
}
Libraries
- Tera: templating
- Tui Rs: build tui dashboard
- Refinery: db scheme versioning
- Rocket: makes API
- Erg: using rust in CLI
- Leptos: Build fast web applications with Rust.
Tips / Tricks
- https://thesquareplanet.com/blog/rust-tips-and-tricks/
- Support for developing in the Rust language is headed toward the kernel
Run single file with tests (avoid cargo)
rustc --test file.rs