gpt4 book ai didi

rust - 在带有 "maybe a missing extern crate"的 Cargo 项目错误中使用 crate

转载 作者:行者123 更新时间:2023-11-29 08:34:20 24 4
gpt4 key购买 nike

我今天开始学习 Rust,但我卡在了 this step .我想在我的项目中使用 rand crate,所以我按照教程中的建议更新了我的 Cargo.toml:

[package]
name = "guessing_game"
version = "0.1.0"
authors = ["Novice <novice.coder@gmail.com>"]

[dependencies]
rand = "0.3.14"

在我的代码中将其导入为:

use rand::Rng;

它给出了这个错误:

error[E0432]: unresolved import `rand`
--> src/main.rs:1:5
|
1 | use rand::Rng;
| ^^^^ maybe a missing `extern crate rand;`?

我错过了什么吗?


我按照建议添加了 edition = "2018":

cargo .toml:

[package]
name = "guessing_game"
version = "0.1.0"
authors = ["Novice <novice.coder@gmail.com>"]
edition = "2018"

[dependencies]
rand = "0.3.14"

cargo build 现在提供:

$ cargo build --verbose
Fresh libc v0.2.45
Fresh rand v0.4.3
Fresh rand v0.3.22
Compiling guessing_game v0.1.0 (/home/bappaditya/projects/guessing_game)
Running `rustc --edition=2018 --crate-name guessing_game src/main.rs --color always --crate-type bin --emit=dep-info,link -C debuginfo=2 -C metadata=4d1c2d587c45b4
c6 -C extra-filename=-4d1c2d587c45b4c6 --out-dir
/home/bappaditya/projects/guessing_game/target/debug/deps -C
incremental=/home/bappaditya/projects/guessing_game/target
/debug/incremental -L
dependency=/home/bappaditya/projects/guessing_game/target/debug/deps --
extern rand=/home/bappaditya/projects/guessing_game/target/debug/deps/libra
nd-78fc4b142cc921d4.rlib`
error: Edition 2018 is unstable and only available for nightly builds of rustc.

我使用 rustup update 更新了 rust,然后将 extern crate rand; 添加到我的 main.rs。现在它按预期工作。

程序运行但在我的 vscode 问题选项卡中它仍然显示错误 -

error[E0432]: unresolved import `rand`
--> src/main.rs:1:5
|
1 | use rand::Rng;
| ^^^^ maybe a missing `extern crate rand;`?

最佳答案

快速修复是添加

edition = "2021"

到您的 Cargo.toml,位于 [dependencies] 行之上。

解释

Rust 有三个主要版本:Rust 2015、2018 和 2021。推荐新代码使用 Rust 2021,但由于 Rust 需要向后兼容,因此您必须选择加入使用

在 Rust 2015 中,在使用 std 之外的任何内容之前,您必须编写一个 extern crate 语句。这就是错误消息的来源。但是在 Rust 2018 或 2021 中您不必再这样做,这就是设置版本修复它的原因。

Rust 2021 中还有更多变化;如果您有兴趣,可以在 edition guide 中阅读有关它们的信息.

关于rust - 在带有 "maybe a missing extern crate"的 Cargo 项目错误中使用 crate ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53985641/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com