Rust Articles, Tutorials & News

Thoughts on Advent of Code and Rust

Diego wrote about his dislike for Advent of Code and that reminded me I hadn’t written up my experience from 2023. Mostly because, spoiler, I never actually completed it and always intended to do so and then write it up. I think it’s time to accept I’m no…

Read more »

Rust GPU Transitions to Community Ownership

We are excited to announce that as of today the Rust GPU project will be transitioning from Embark Studios to community ownership under the Rust GPU GitHub organization. This move marks the beginning of a broader strategy aimed at revitalizing, unifying, …

Read more »

A Comparison of Arenas in Rust

Sometimes you just really need an arena. Sometimes for performance reasons, other times for lifetime-related reasons. In their most basic forms, they’re just a vec with some extra guarantees. However, it’s those extra guarantees that matter. I’ve found my…

Read more »