Rust 1.41.0
Language
- You can now pass type parameters to foreign items when implementing traits. E.g. You can now write
impl<T> From<Foo> for Vec<T> {}. - You can now arbitrarily nest receiver types in the
selfposition. E.g. you can now writefn foo(self: Box<Box<Self>>) {}. Previously onlySelf,&Self,&mut Self,Arc<Self>,Rc<Self>, andBox<Self>were allowed. - You can now use any valid identifier in a
format_argsmacro. Previously identifiers starting with an underscore were not allowed. - Visibility modifiers (e.g.
pub) are now syntactically allowed on trait items and enum variants. These are still rejected semantically, but can be seen and parsed by procedural macros and conditional compilation. - You can now define a Rust
extern "C"function withBox<T>and useT*as the corresponding type on the C side. Please see the documentation for more information, including the important caveat about preferring to avoidBox<T>in Rust signatures for functions defined in C.
Compiler
- Rustc will now warn if you have unused loop
'labels. - Removed support for the
i686-unknown-dragonflytarget. - Added tier 3 support* for the
riscv64gc-unknown-linux-gnutarget. - You can now pass an arguments file passing the
@pathsyntax to rustc. Note that the format differs somewhat from what is found in other tooling; please see the documentation for more information. - You can now provide
--externflag without a path, indicating that it is available from the search path or specified with an-Lflag.
* Refer to Rust's platform support page for more information on Rust's tiered platform support.
Libraries
- The
core::panicmodule is now stable. It was already stable throughstd. NonZero*numerics now implementFrom<NonZero*>if it's a smaller integer width. E.g.NonZeroU16now implementsFrom<NonZeroU8>.MaybeUninit<T>now implementsfmt::Debug.
Stabilized APIs
Result::map_orResult::map_or_elsestd::rc::Weak::weak_countstd::rc::Weak::strong_countstd::sync::Weak::weak_countstd::sync::Weak::strong_count
Cargo
- Cargo will now document all the private items for binary crates by default.
cargo-installwill now reinstall the package if it detects that it is out of date.- Cargo.lock now uses a more git friendly format that should help to reduce merge conflicts.
- You can now override specific dependencies's build settings E.g.
[profile.dev.package.image] opt-level = 2sets theimagecrate's optimisation level to2for debug builds. You can also use[profile.<profile>.build-override]to override build scripts and their dependencies.
Misc
- You can now specify
editionin documentation code blocks to compile the block for that edition. E.g.edition2018tells rustdoc that the code sample should be compiled the 2018 edition of Rust. - You can now provide custom themes to rustdoc with
--theme, and check the current theme with--check-theme. - You can use
#[cfg(doc)]to compile an item when building documentation.
Compatibility Notes
- As previously announced 1.41 will be the last tier 1 release for 32-bit Apple targets. This means that the source code is still available to build, but the targets are no longer being tested and release binaries for those platforms will no longer be distributed by the Rust project. Please refer to the linked blog post for more information.