使用夜间版本的板条箱?

时间:2019-06-15 06:13:53

标签: rust rust-cargo

如何使用夜间使用的板条箱(来自crates.io)?抱歉,我应该知道,但是我在文档中的任何地方都找不到。我假设我在Cargo.toml中放了东西。

1 个答案:

答案 0 :(得分:1)

Rust中的“ Nightly”是指编译器和语言的开发版本。没有板条箱的“每晚版本”。

但是,您可以通过将代码存储库用作源来使用板条箱的开发版本,例如在Cargo.toml中:

[dependencies]
foobar = { git = "https://github.com/user/foobar", branch = "dev_branch" }

另请参见the full syntaxother related questions