Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Rust 1.97(2026-07)

官方发布说明:Announcing Rust 1.97.0

Rust 1.97 默认启用 Rust 专用的 symbol mangling v0,泛型实例的符号信息更完整,调试器和二进制分析工具不再需要按 Itanium ABI 猜测 Rust 名称。

Cargo 新增通过环境变量控制构建警告的能力:

CARGO_BUILD_WARNINGS=deny cargo check --all-targets
CARGO_BUILD_WARNINGS=allow cargo check

链接器的 stderr 也不再默认静默。如果某条消息是已知且无害的,可以在 Cargo.toml 中用 [lints.rust] linker_messages = "allow" 精确处理。