Так как никто не хочет писать новость, то просто закину сюда.
https://blog.rust-lang.org/2017/10/12/Rust-1.21.html
The Rust team is happy to announce the latest version of Rust, 1.21.0. Rust is a systems programming language focused on safety, speed, and concurrency.
Главное
Изменено поведение литерала & в некоторых случаях:
use std::thread;
fn main() {
let x = &5;
thread::spawn(move || {
println!("{}", x);
});
}
let x = &5
будет эквивалентен этому:
static FIVE: i32 = 5;
let x = &FIVE;
for_each теперь stable
// old
for i in 0..10 {
println!("{}", i);
}
// new
(0..10).for_each(|i| println!("{}", i));