55个版本

0.3.26 2022年1月18日
0.3.25 2021年10月18日
0.3.23 2021年8月30日
0.3.22 2021年7月4日
0.0.3 2017年2月11日

#832命令行界面

Download history 225274/week @ 2024-03-14 226589/week @ 2024-03-21 244674/week @ 2024-03-28 231228/week @ 2024-04-04 255501/week @ 2024-04-11 265477/week @ 2024-04-18 247369/week @ 2024-04-25 260557/week @ 2024-05-02 249092/week @ 2024-05-09 278622/week @ 2024-05-16 281990/week @ 2024-05-23 292746/week @ 2024-05-30 289200/week @ 2024-06-06 283845/week @ 2024-06-13 278161/week @ 2024-06-20 241154/week @ 2024-06-27

每月 1,154,061 次下载
此Crate已失去人气

Apache-2.0 OR MIT

62KB
269

StructOpt

Build status unsafe forbidden

通过定义结构体来解析命令行参数。它结合了 clap 和自定义 derive。

维护

由于 clap v3 已发布,且 structopt 功能已集成(几乎完全相同),structopt 现已进入维护模式:不会添加新功能。

将修复错误,并接受文档改进。

文档

Docs.rs 上找到它。您还可以查看 示例变更日志

示例

structopt 添加到您的 Cargo.toml 依赖中

[dependencies]
structopt = "0.3"

然后,在您的 rust 文件中

use std::path::PathBuf;
use structopt::StructOpt;

/// A basic example
#[derive(StructOpt, Debug)]
#[structopt(name = "basic")]
struct Opt {
    // A flag, true if used in the command line. Note doc comment will
    // be used for the help message of the flag. The name of the
    // argument will be, by default, based on the name of the field.
    /// Activate debug mode
    #[structopt(short, long)]
    debug: bool,

    // The number of occurrences of the `v/verbose` flag
    /// Verbose mode (-v, -vv, -vvv, etc.)
    #[structopt(short, long, parse(from_occurrences))]
    verbose: u8,

    /// Set speed
    #[structopt(short, long, default_value = "42")]
    speed: f64,

    /// Output file
    #[structopt(short, long, parse(from_os_str))]
    output: PathBuf,

    // the long option will be translated by default to kebab case,
    // i.e. `--nb-cars`.
    /// Number of cars
    #[structopt(short = "c", long)]
    nb_cars: Option<i32>,

    /// admin_level to consider
    #[structopt(short, long)]
    level: Vec<String>,

    /// Files to process
    #[structopt(name = "FILE", parse(from_os_str))]
    files: Vec<PathBuf>,
}

fn main() {
    let opt = Opt::from_args();
    println!("{:#?}", opt);
}

使用此示例

$ ./basic
error: The following required arguments were not provided:
    --output <output>

USAGE:
    basic --output <output> --speed <speed>

For more information try --help
$ ./basic --help
basic 0.3.0
Guillaume Pinot <[email protected]>, others
A basic example

USAGE:
    basic [FLAGS] [OPTIONS] --output <output> [--] [file]...

FLAGS:
    -d, --debug      Activate debug mode
    -h, --help       Prints help information
    -V, --version    Prints version information
    -v, --verbose    Verbose mode (-v, -vv, -vvv, etc.)

OPTIONS:
    -l, --level <level>...     admin_level to consider
    -c, --nb-cars <nb-cars>    Number of cars
    -o, --output <output>      Output file
    -s, --speed <speed>        Set speed [default: 42]

ARGS:
    <file>...    Files to process
$ ./basic -o foo.txt
Opt {
    debug: false,
    verbose: 0,
    speed: 42.0,
    output: "foo.txt",
    nb_cars: None,
    level: [],
    files: [],
}
$ ./basic -o foo.txt -dvvvs 1337 -l alice -l bob --nb-cars 4 bar.txt baz.txt
Opt {
    debug: true,
    verbose: 3,
    speed: 1337.0,
    output: "foo.txt",
    nb_cars: Some(
        4,
    ),
    level: [
        "alice",
        "bob",
    ],
    files: [
        "bar.txt",
        "baz.txt",
    ],
}

StructOpt rustc 版本策略

  • 必须指定最小 rustc 版本修改,并在 变更日志travis 配置 中说明。
  • 如果新的版本要求 StructOpt 依赖项的最新版本(cargo update 不会失败),贡献者可以在没有任何理由的情况下增加最小 rustc 版本。
  • 如果改进了库的用户体验,贡献者可以增加最小 rustc 版本。

许可协议

许可协议为以下之一

任选其一。

贡献

除非您明确声明,否则根据Apache-2.0许可证定义的,您有意提交的任何贡献,包括在作品中的使用,将按照上述方式双许可,不附加任何额外条款或条件。

依赖项

约3MB
约52K SLoC