gpt4 book ai didi

rust - Rocket Framework 示例无法编译

转载 作者:行者123 更新时间:2023-11-29 08:25:02 28 4
gpt4 key购买 nike

我尝试每晚安装 Rust 并编译 Rocket 的 hello_world 示例项目。我收到此错误:

error[E0599]: no associated item named `Lifetime`

error[E0599]: no associated item named `Lifetime` found for type `syntax::ast::GenericParam` in the current scope
--> /Users/azwar/.cargo/registry/src/github.com-1ecc6299db9ec823/rocket_codegen-0.3.13/src/decorators/derive_form.rs:30:25
|
30 | GenericParam::Lifetime(ref def) => Some(def),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ associated item not found in `syntax::ast::GenericParam`

我搜索了这个错误,但没有线程或文章解释如何修复该错误。

这些是我的依赖项:

[dependencies]
rocket = "0.3.13"
rocket_codegen = "0.3.13"

我正在使用 Rust rust 版本 1.28.0-nightly (cbc4c8380 2018-06-22)

最佳答案

您的问题是 fixed in v0.3.14 .

将您的 Cargo.toml 更新为 "0.3.14"。然后使用 cargo update 更新您的包或直接指定包:

cargo update -p rocket_codegen
cargo update -p rocket

关于rust - Rocket Framework 示例无法编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50998962/

28 4 0
文章推荐: mysql - 查询速度非常慢
文章推荐: java - 在 Apache JsonToStringStyle 中格式化日期
文章推荐: php - 搜索多个值,按相关性排序(php + MySQL,无全文搜索)
文章推荐: Java 8 将 Optional 转换为 long、int、String 或 Foo