我怎样才能知道一个 crate 是否与特定的 Rust 版本兼容?

How can I find out whether a crate is compatible with a specific Rust version?

如果我找到了一个我想使用的 crate,我如何才能确定该 crate 与哪些版本的 Rust 一起工作?

现在,您要么阅读 crate 的文档,要么自己测试。许多较大的板条箱在提出稳定性声明时会在 CI 中针对较旧的 Rust 固定版本进行测试。

有一个 proposed RFC 可以将 Rust 版本添加到 Cargo.toml 文件。