Apparently, if a crate is not 100% human written, it is off topic for /r/rust: reddit.com/r/rust/comme.... I have been working on Toasty for 3 years, 9 months with AI tools. I am quite proud of the code quality and stand by it. By their standard, the entire tokio-rs GitHub organization is now OT.
Posts by David Tolnay
hot take: for a library with no dependencies that isn’t exposed to untrusted inputs, “unmaintained” is actually the most secure state possible
“Floating-Point Printing and Parsing Can Be Simple And Fast”
The fastest known floating-point printer and parsing algorithms - fixed-width printing, shortest-width printing, and parsing, all in 400 lines of Go.
research.swtch.com/fp
research.swtch.com/fp-proof
i take great solace in the fact that my brother, the only true 10x software engineer that i know, has barely heard of IDEs let alone "generative AI"
all these people go on about how stable C and C++ are, and how Rust changes too much.... but then they also talk about how their work codebase is stuck on C89 or C++17.
gcc's "codebase isn't fully C++20 ready" gcc.gnu.org/pipermail/gc...
who do i have to pay to get a rustfmt that doesn't shit itself on long lines
Once I wrap up some other projects. It is definitely on my list.
Useful not just for language keywords, but also identifiers given meaning by macros. For example `thiserror` treats fields named "source" as the Error::source() of your error. If your source means something else, instead of fussing with some kind of #[not_source] attribute, just name it r#source.
🎉We raised $100M USD in our Series B financing. Thank you to USIT for leading this round, to our existing investors for their participation, and to our team, customers, and community for getting us to where we are today!
oxide.computer/blog/our-100...
once again, #rustlang is the most admired programming language on the stack overflow survey: survey.stackoverflow.co/2025/technol...
Howdy all. I'm unfortunately not going to be with my employer for much longer due to team relocation. If anyone has any info on roles that would allow me to continue my Rust compiler work (in New York City), they'd be greatly appreciated.
Today, we’re announcing the preview release of ty, an extremely fast type checker and language server for Python, written in Rust.
In early testing, it's 10x, 50x, even 100x faster than existing type checkers. (We've seen >600x speed-ups over Mypy in some real-world projects.)
github.com/dtolnay/buck...
Build #rust via buck2 instead of x.py, very cool project by @dtolnay.bsky.social
🦀 Hello World!
The Rust project now has an official presence on Bluesky! ✨
We'll be posting the same on our Mastodon and Bluesky accounts, so you won't miss anything on either platform.
New blog post up on the Rust font loader now shipping in Chrome. I only had a small part in this personally but am proud of the team's work. developer.chrome.com/blog/memory-...
TypeScript team: rewrites compiler in Go.
Go community: what do you mean your new compiler takes more than a minute to compile? Unacceptable. Dishonorable even. We are so sorry for this sub par experience. Not how we do things around here.
Two days later: WIP 5x speedup.
HN: why pick Go anyway?
Carefully but Purposefully Oxidising Ubuntu #rustlang
discourse.ubuntu.com/t/carefully-...
There are probably 4–6 people who, if they had dedicated their 10 years to a different language or hobby, you would not be hearing success stories about Rust.
but what I can say is, I personally sat down one evening and said "I think Rust can be the next great systems programming language" and then dedicated the next ~10 years of my life to making that happen
Carbon is not a programming language (sort of) #cpp herecomesthemoon.net/2025/02/carb...
Yikes #cpp www.reddit.com/r/cpp/commen...
I don’t know who needs to hear this, but &serde_json::Value implements serde::Deserializer
We’re building a new static type checker for Python, from scratch, in Rust.
From a technical perspective, it’s probably our most ambitious project yet. We’re about 800 PRs deep!
Not a surprise that we love Rust at @oxide.computer! It's ecosystem of crates is a great strength. Last night @bcantrill.bsky.social and I spoke with our colleague @sunshowers.io, @elizas.website, and @steveklabnik.com about the crates we love. Lotta great stuff out there!
youtu.be/BTnrXDjxbBw
The Rust ecosystem is amazing, but it can be hard to discover new crates. Today @ahl.bsky.social and I will be joined by our colleagues @elizas.website and @sunshowers.io, who will offer their wisdom and walk us through some crates you should know. Join us, 5p Pacific!
discord.gg/QrcKGTTPrF?e...
error: avoid using labels containing only the digits `0` and `1` in inline assembly --> hal-x86_64/src/segment.rs:243:14 | 243 | "1:", | ^ use a different label that doesn't start with `0` or `1` | = help: start numbering with `2` instead = note: an LLVM bug makes these labels ambiguous with a binary literal number on x86 = note: see <https://github.com/llvm/llvm-project/issues/99547> for more information = note: `#[deny(binary_asm_labels)]` on by default
why Rust is the greatest programming language of all time, in one screenshot
This is the ideal design for a trait-impl-based serialization library IMO. See this comment: github.com/serde-rs/ser... where I arrived at this same concept (in less detail) where it talks about "the ultimate non-generic DeserializeSeed" as my preferred design for a standard library std::serde.
A somewhat unusual / less formal talk from me at CppNorth about both #CarbonLang and #CPlusPlus is up! youtu.be/8SGMy9ENGz8
I hope you all enjoy it, I enjoy these weird corners of language design.