Rust crate stdlib inclusion via left-pad index

Patrick Walton proposed the idea of a “left-pad index”: I went ahead and crunched the numbers for crates.io, surveying the top 500 crates by recent downloads, dividing that number by the crate size, and coming up with the following results: Per Pa… Read more

Similar

What’s a reference in Rust?

Hello! Recently I am trying to learn Rust (because I am going to do a project in Rust, and to do that I need to learn Rust better). I’ve written a few hundred lines of Rust over the last 4 years, but I’m honestly still pretty bad at Rust and so my goal is... (more…)

Read more »

Overview of Rust error handling libraries

Rust's error handling is a pleasure to use thanks to the Result type. It ensures Rust's error handling is always correct, visible, and performant. And with the addition of the ? operator in Rust 1.13, and the addition of return types from main in Rust 1.2... (more…)

Read more »