Rust 团队很高兴宣布 Rust 的新版本 1.67.0。Rust 是一种编程语言,它使每个人都能构建可靠且高效的软件。
如果您之前通过 rustup 安装了 Rust,您可以使用以下命令获取 1.67.0
$ rustup update stable
如果您还没有,您可以从我们网站上的相应页面 获取 rustup
,并查看 GitHub 上的 1.67.0 的详细发布说明。
如果您想通过测试未来的版本来帮助我们,您可以考虑更新本地以使用 beta 通道 (rustup default beta
) 或 nightly 通道 (rustup default nightly
)。请 报告 您遇到的任何错误!
1.67.0 稳定版中的内容
#[must_use]
对 async fn
有效
使用 #[must_use]
注解的 async
函数现在将该属性应用于返回的 impl Future
的输出。Future
特性本身已经用 #[must_use]
注解,因此所有实现 Future
的类型都自动为 #[must_use]
,这意味着以前没有办法表明 Future
的输出本身很重要,应该以某种方式使用。
在 1.67 中,编译器现在将在输出未以某种方式使用时发出警告。
#[must_use]
async fn bar() -> u32 { 0 }
async fn caller() {
bar().await;
}
warning: unused output of future returned by `bar` that must be used
--> src/lib.rs:5:5
|
5 | bar().await;
| ^^^^^^^^^^^
|
= note: `#[warn(unused_must_use)]` on by default
std::sync::mpsc
实现已更新
Rust 的标准库在 1.0 之前就有了多生产者、单消费者通道,但在本版本中,实现被切换为基于 crossbeam-channel
。本版本不包含任何 API 更改,但新实现修复了许多错误,并提高了实现的性能和可维护性。
用户在本版本中不应注意到任何重大行为变化。
稳定化的 API
{integer}::checked_ilog
{integer}::checked_ilog2
{integer}::checked_ilog10
{integer}::ilog
{integer}::ilog2
{integer}::ilog10
NonZeroU*::ilog2
NonZeroU*::ilog10
NonZero*::BITS
这些 API 现在在 const 上下文中是稳定的
查看 Rust、Cargo 和 Clippy 中的所有更改:Rust、Cargo 和 Clippy。
1.67.0 的贡献者
许多人共同创建了 Rust 1.67.0。没有你们,我们不可能做到。 感谢!