Live data from Hacker News

Rust All Hands 2026 Retrospective

blog.rust-lang.org

61–63 of 63 posts

Re: Rust All Hands 2026 Retrospective

#61
post #40

Devil's advocate from the description at the top of relevant groups speaking. The two in areas I'm familiar with are areas I'm excited about seeing rust take off in the future, and are already a great use of it. I don't think those groups are the ones that will (or should) do it. Rust-GPU: This is the org responsible for Rust CUDA, which was a historically non-working library I spent too much time trying to get worki…

> ownership, generics, safety, Async Aren’t they the main selling points of Rust? Why use Rust over another language if you’re not using its main features?

Yes, but actually no. In the embedded space the only other language worth considering is C/C++. The default is that everything is unsafe, so any Rust is already a massive improvement. Add to that the basic language UX and a lot of developers are waiting for an excuse to jump ship.

However, that does not mean that every single piece of code must be 100% safe. An embedded developer today is already constantly juggling with safety. Especially when it comes to low-level hardware interaction, I'd rather have a raw unsafe API today than wait several years for an inevitably-flawed safe abstraction.

I don't need Rust to track the ownership of an I2C peripheral. It's a nice-to-have, but it is easy enough to do by yourself - there aren't that many of them and interactions are rather obvious. I'm already used to the possibility of mishandling some pins resulting in the board catching fire, I promise I can handle this.

On the other hand, I really do want Rust to keep track of what's going on in all my business logic, for all the same reasons you want memory safety on a regular computer. Is my 10k-line protocol handler safe? Sure would love a double-check on that!

So no, I'm not really all that interested in the fancy clever abstractions. Making sure the KISS ones are rock solid is far more important to me.

Re: Rust All Hands 2026 Retrospective

#62
post #60

Earlier quoted context omitted.

long gone in the sense of media coverage perhaps? the virus hasn't gone anywhere and it's not like we have vaccines that give permanent/longterm immunity

Nowadays I am more concerned about measles and ebola viruses. Over-indexing on covid makes little sense in 2026.

Measles has a vaccine, ebola isn't found in the wild in the West. The chances of catching either from a random person at a meetup are basically zero.

It is no longer a pandemic which is killing tens of thousands of people, but covid is very much still around, and there's no true long-term vaccine for it. A lot of people with it are going to be more-or-less asymptomatic.

However, for a small bunch of immunocompromised people it is still very much life-altering or even deadly. For them catching it is just Not An Option, so if you want them at a large-scale meetup like this you'll have to ask all attendants to make the offer of spending a few seconds taking the $2 test.

Re: Rust All Hands 2026 Retrospective

#63
post #3

I could see Rust becoming the language for coding agents, because it has such solid guardrails built in. I could also see it slipping into obscurity as LLMs get faster and compile times become a more and more obvious bottleneck on iteration speeds.

> compile times

Try https://github.com/kunobi-ninja/kache

Post reply on HN