6 个版本
0.1.5 | 2021 年 10 月 18 日 |
---|---|
0.1.4 | 2021 年 10 月 17 日 |
15 in #structopt
每月 87 次下载
用于 clickrs
10KB
139 行
Click-rs
Rust 的 Python click 克隆,基于 structopt 库构建。
文档
在 Docs.rs 上找到。
示例
不幸的是,目前必须安装 structopt
。
重写 structopt
的示例,将 clickrs
和 structopt
添加到你的 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>...
许可证
根据您的选择,许可协议为以下之一:
- Apache License,版本 2.0 (LICENSE-APACHE 或 https://apache.ac.cn/licenses/LICENSE-2.0)
- MIT 许可证 (LICENSE-MIT 或 https://opensource.org/licenses/MIT)
。
依赖关系
~3.5MB
~58K SLoC