如何使用特定版本的Rust?

时间:2019-04-03 21:16:34

标签: rust rust-cargo rustc

我知道当前有两个版本的Rust(20152018),我怎么能告诉cargorustc我要使用哪个版本?

1 个答案:

答案 0 :(得分:4)

您可以将以下内容添加到Cargo.toml中,该内容记录在edition 2018 guide中:

[package]
edition = "2018"

如果您直接使用rustc,则可以使用rustc --edition 2018,该文件已通过rustc --help -v命令记录。

--edition 2015|2018
  Specify which edition of the compiler to use when
  compiling code.