我知道当前有两个版本的Rust(2015
和2018
),我怎么能告诉cargo
和rustc
我要使用哪个版本?>
答案 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.