我正在尝试使用 Cargo 使用“actix-web”板条箱。我在 Windows 10 上使用 WSL 版本的 Ubuntu。
我跑的步骤:
- 使用安装 Cargo(和 Rust)
sudo apt install cargo
- 使用创建了一个项目
cargo new hello
- 在文件
actix-web = "0.7.8"
下添加[dependencies]
Cargo.toml
- 跑
cargo run
并得到以下编译错误:
error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> /home/ash/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.13.2/build.rs:375:9
|
375 | let (_, _, perlasm_format) = ASM_TARGETS.iter().find(|entry| {
| ^^^^^^^^^^^^^^^^^^^^^^ help: consider using a reference: `&(_, _, perlasm_format)`
error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> /home/ash/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.13.2/build.rs:674:9
|
674 | for (src, dst) in src_dst {
| ^^^^^^^^^^ help: consider using a reference: `&(src, dst)`
error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> /home/ash/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.13.2/build.rs:737:35
|
737 | RING_SRCS.iter().any(|(_, f)| cmp(f)) ||
| ^^^^^^ help: consider using a reference: `&(_, f)`
error[E0658]: non-reference pattern used to match a reference (see issue #42640)
--> /home/ash/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.13.2/build.rs:741:35
|
741 | RING_SRCS.iter().any(|(_, f)| cmp(f)) ||
| ^^^^^^ help: consider using a reference: `&(_, f)`
我尝试使用通配符依赖项,但我无法让它工作。
rustc
是版本1.25.0
cargo
是版本0.26.0