To update, run rustup update stable
.
-
rustc
avoids unnecessary memory copies in certain situations->
5-10% less memory usage - CommonMark for
rustdoc
-
http://doc.crates.io
->
https://doc.rust-lang.org/cargo -
std::ascii::AsciiExt
is deprecated because methods of the trait are directly defined foru8
,char
,[u8]
, andstr
- Atomic types implement
::From
their non-atomic types, e.g.:let x = AtomicBool::From(true)
()
now implementsFromIterator<()>
- RwLock has had its Send restriction lifted
cargo check
can check your unit testscargo uninstall
can now uninstall more than one package in one command
Top comments (0)