







kyju.org
Horribly misusing Rust features to provide provable memory safety and tracing garbage collection for pointer soup.
What would SQLite look like if written in Rust? — Part 1
Writing a SQLite clone from scratch in Rust

The Ultimate Guide to Rust Newtypes
Clean up your code, clarify business logic and improve test coverage with Rust's newtype wrappers.

Rust Is Winning the AI Code Generation Race
I’ve been generating a lot of code with AI agents lately. Most of it in Rust, and nice about it is that it consistently better than what I…

Announcing Rust 1.96.1 | Rust Blog
Empowering everyone to build reliable and efficient software.

Rust Meets Dart With Release of rust_core 1.0.0
rust_core is an implementation of Rust's core library in Dart.

Segfaults are our friends and teachers
This afternoon, I got a segmentation fault in a Rust program, and was confused. This is Rust, I shouldn’t get segfaults! I quickly checked the couple of places I used unsafe, and they were either calling C functions (and checking the errors), or telling the compiler not to initialize some memory because I was going to write into it unconditionally before reading from it.
rust-lang/rust is adopting an LLM policy | Inside Rust Blog
Want to follow along with Rust development? Curious how you might get involved? Take a look!

The Rust Programming Language - The Rust Programming Language
by Steve Klabnik, Carol Nichols, and Chris Krycho, with contributions from the Rust Community
Default musl allocator considered harmful (to performance)
In a real world benchmark, the default musl allocator caused a 7x slowdown compared to other allocators. I recommend all Rust projects immediately swap to a different allocator in a musl environment.

Learning Rust
Learning Rust - Rust Programming Language Tutorials for Everyone!

Be Simple | corrode Rust Consulting
The phone buzzes at 3 AM. You roll out of bed, open your laptop, and see this in the logs: thread 'tokio-runtime-worker' panicked at 'called `Result::unwrap()` on an `Err` value: Error("data did not match any variant of untagged enu…

Seph
The Rust programming language feels like a first generation product. You know what I mean. Like the first iPhone - which was amazing by the way. They made an entire operating system around multitouch. A smart phone with no keyboard. And a working web browser. Within a few months, we…

Making `Arc` itself atomic