Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube. (more…)
Read more »
Dread it. Run from it. Your programs will be rewritten in Rust all the same!Join our discord:https://discord.gg/t6PuV95H45... (more…)
Read more »
TLDR: I think that the primary benefit of async/await is that it lets us concisely express complex concurrency; any (potential) performance improvements are just a second-order effect. We should thus judge async primarily based on how it simplifies our co... (more…)
Read more »
This post describes some performance work I have been doing recently on rustc. I spent several weeks on a particular problem with only a small amount of success. I hope a write-up will be interesting and educational, and may even lead to suggestions that ... (more…)
Read more »
Ownership is a unique memory allocation feature in Rust that guarantees memory safety even for large projects - no garbage collector required. (more…)
Read more »