Announcing Rust 1.93.0

51 points by itamarst


muvlon

Scanning these, the main one that excites me is <[T]>::as_array. This allows you to un-erase the size of a slice, turning it into an array of compile-time known size. I've hand-rolled this before when working with chunks_exact, but then I could only do it for one hardcoded size. The version they stabilized uses const generics, so it works for any chunk size, nice!

spc476

Why even bother with 1.? Why not Rust 93? I've found that semantic versioning for applications to be a bit silly myself.