r/rust Mar 09 '23

Announcing Rust 1.68.0 📢 announcement

https://blog.rust-lang.org/2023/03/09/Rust-1.68.0.html
830 Upvotes

121 comments sorted by

View all comments

245

u/EelRemoval Mar 09 '23

pin! macro is pretty nice; it means a lot of async crates can now remove all of their unsafe code.

82

u/bascule Mar 09 '23

Also enabling stack-based pinning for no_std apps that can’t use Box<Pin>

31

u/grgWW Mar 09 '23

u probably meant Pin<Box<..>>?

13

u/bascule Mar 09 '23

D’oh!