繁体   English   中英

拍手说“货物”功能标志是必需的 - 这是什么意思?

[英]Clap says `cargo` feature flag is required - what does it mean?

这是我在src/bin/foo.rs中的代码:

use clap::command;
pub fn main() {
  let matches = command!("foo")
    .about("Simple util")
    .get_matches();
}

我越来越:

error: `cargo` feature flag is required
  --> src/bin/foo.rs:30:19
   |
30 |     let matches = command!("foo")
   |                   ^^^^^^^^^^^^^^^
   |

在您的Cargo.toml文件中更改您的 clap 依赖项以启用cargo功能。

例如

clap = { version = "3.2.20", features = ["cargo"] }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM