ARTICLES
info
- engineering
- engineering/dev
- engineering/dev/lang
- engineering/dev/lang/rust
Deciphering my own notes
I have a backlog of drafts waiting to be polished into something readable. Check back soon!
engineering/dev/lang/rust
24.03.26
How the Rust compiler works
An overview of rustc's compilation pipeline: lexing, parsing, HIR/MIR lowering, codegen, and linking. Plus common cargo profile options explained.
EN
referenceC-concept
engineering/dev/lang/rust
24.03.26
Optimize Rust compilation
From the compiler to how you manage your project, this article is a complete walk-through to improve compilation time, runtime performance and binary size.
EN
deep-diveguide