#clap #structopt #cli #proc-macro

clickrs_proc_macro

通过过程宏实现的 Rust 简化 CLI(Python 的 click,用于 Rust)。过程宏库。

6 个版本

0.1.5 2021 年 10 月 18 日
0.1.4 2021 年 10 月 17 日

15 in #structopt

Download history 25/week @ 2024-04-15 6/week @ 2024-04-22 13/week @ 2024-06-10 4/week @ 2024-06-24 8/week @ 2024-07-01 87/week @ 2024-07-29

每月 87 次下载
用于 clickrs

Apache-2.0 OR MIT

10KB
139

Click-rs

Rust 的 Python click 克隆,基于 structopt 库构建。

文档

Docs.rs 上找到。

示例

不幸的是,目前必须安装 structopt

重写 structopt 的示例,将 clickrsstructopt 添加到你的 Cargo.toml 依赖项中

[dependencies]
clickrs = "0.1"
structopt = "0.3"

然后在你的 rust 文件中

use clickrs::command;
use std::path::PathBuf;

#[command(name = "basic")]
#[argument("debug", short, long)]
#[argument("verbose", short, long, parse(from_occurrences))]
#[argument("speed", short, long, default_value = "42")]
#[argument("output", short, long, parse(from_os_str))]
#[argument("nb_cars", short = "c", long)]
#[argument("level", short, long)]
#[argument("files", name = "FILE", parse(from_os_str))]
fn main(
    debug: bool,
    verbose: u8,
    speed: f64,
    output: PathBuf,
    nb_cars: Option<i32>,
    level: Vec<String>,
    files: Vec<PathBuf>,
) {
    println!("{:?}", speed);
}

使用此示例

$ ./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.1.0

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

FLAGS:
    -d, --debug
    -h, --help       Prints help information
    -V, --version    Prints version information
    -v, --verbose

OPTIONS:
    -l, --level <level>...
    -c, --nb-cars <nb-cars>
    -o, --output <output>
    -s, --speed <speed>         [default: 42]

ARGS:
    <FILE>...

许可证

根据您的选择,许可协议为以下之一:

依赖关系

~3.5MB
~58K SLoC