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.90(2025-09)

官方发布说明:Announcing Rust 1.90.0

Rust 1.90 将 Linux x86_64-unknown-linux-gnu 的默认链接器切换为 LLD,大型项目和增量构建通常会获得更短的链接时间。Cargo 也原生支持按依赖顺序发布整个 workspace:

cargo publish --workspace

如果项目依赖旧链接器,可以在 .cargo/config.toml 中显式关闭 LLD:

[target.x86_64-unknown-linux-gnu]
rustflags = ["-Clinker-features=-lld"]

另外,x86_64-apple-darwin 从 Tier 1 调整为 Tier 2 with host tools;在 CI 中应明确选择仍有完整测试保障的目标平台。