我想用第三方的warp库编译一个简单的rust程序:
[package]
name = "hello-world-warp"
version = "0.1.0"
[dependencies]
warp = "0.1.18"
在src/main.rs
中:
use warp::{self, path, Filter};
fn main() {
// GET /hello/warp => 200 OK with body "Hello, warp!"
let hello = warp::path!("hello" / String)
.map(|name| format!("Hello, {}!", name));
warp::serve(hello)
.run(([127, 0, 0, 1], 3030));
}
当我运行cargo build
时,我看到它下载了warp和大量的传递依赖项,然后我得到了错误:
Compiling hello-world-warp v0.1.0 (<path>) error[E0432]: unresolved import `warp`
--> src/main.rs:3:12
|
3 | use warp::{self, path, Filter};
| ^^^^ no `warp` in the root
error: cannot find macro `path!` in this scope
我已经看过了关于模块和板条箱的各种文档。在这个简单的场景中,我做错了什么?
1条答案
按热度按时间83qze16e1#
您复制的示例使用的语法在Rust的最新版本中有效,但您不小心将Rust设置为模拟该语言的旧“2015”版本。
您必须添加:
到您的
Cargo.toml
的[package]
部分。当开始新项目时,总是使用
cargo new
。它将确保正确设置最新版本标志。