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...
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...