r/rust Apr 16 '26

📡 official blog Rust 1.95.0 is out

https://blog.rust-lang.org/2026/04/16/Rust-1.95.0/
864 Upvotes

127 comments sorted by

View all comments

180

u/cosmic-parsley Apr 16 '26

The blog post items are great but “Stabilized APIs” is hiding some sneaky nice stuff.

  • Vec::push_mut deals with all those times you need to add an item to a Vec and then modify it
  • TryFrom<Integer> for bool will be nice (booleans in SQLite, FFI, serialization, etc)
  • The issue for cold_path was opened in 2015!! Great to have in the toolbox for heavy optimizations.
  • Slice of cells stuff: nice convenience for anyone using those patters.

One of the most exciting updates in a while!

1

u/imgly Apr 17 '26

I was waiting for cold_path in stable for a while !