Skip to main content


🦀 I'm really excited about today's #rustlang release! 🥳

- offset_of!
- c"" string literals!
- stripping release binaries by default!
- IP/socket types available in no_std!
- File::create_new (won't overwrite existing files)!
- more array and slice methods (each_ref, chunk methods)!
- Mutex::clear_poison!

https://blog.rust-lang.org/2024/03/21/Rust-1.77.0.html

This entry was edited (1 month ago)
in reply to Mara

Really cool to see the c"" string literal feature stabilized. I wrote the RFC for c"" string literals [1], so I'm very excited to see it reach stable Rust today.

I had nothing to do with its implementation, however. The implementation was done by @beef [2] and quite a few others worked on it too [3]. Thanks all, for making this happen!

[1]: https://github.com/rust-lang/rfcs/pull/3348
[2]: https://github.com/rust-lang/rust/pull/108801
[3]: https://github.com/rust-lang/rust/issues/105723

⇧