Live data from Hacker News

My Favourite Thing About Rust Is the Compiler

mayberay.bearblog.dev

1–2 of 2 posts

Re: My Favourite Thing About Rust Is the Compiler

#2
Mine too! Rust is my favourite language right now.

The complications begin with async. Outside of async it’s a beautiful world.

With async, you tend to get locked down on library ecosystem level, with the dominant approach being work-stealing Tokio runtime, which I disagree with the fundamental design, after doing a lot of research. However, the gravity field of Tokio is strong. To escape it , I had to make a copy of popular crates and dig with LLMs to rewrite them to be free of work-stealing.