Rust
Basics
The basics of Rust.
Macros
An overview and examples for the diverse types of macros you can use in Rust.
Frameworks
A collection of tutorials for some frameworks I often use.
SQLx
SQLx is a SQL framework for Rust, which allows to write SQL queries and check them on compile tim...
Actix-Web
actix-web is a framework for writting web applications and REST APIs. Installation # To insta...
Tracing
Tracing is a library for logging. It consists of multiple libraries. You need at least tracing, w...
Serde
Serde (Serialize and Deserialize) is a library to serialize and deserialize data to or from a str...
config
config (crates.io) is a library for building configuration structs from sources like env variable...
SeaORM
SeaORM (from SeaQL) is an ORM for Rust. Installation When Installing SeaORM, you need to defin...
Tricks
Allow everything what can be a str reference fn do_something<S: AsRef<str>>(input: S) { le...
Cross compilation
You can cross compile your Rust code using the target specifier. For example: cargo build --targ...