3 个版本

0.1.2 2022 年 1 月 22 日
0.1.1 2022 年 1 月 22 日
0.1.0 2022 年 1 月 22 日

#501Cargo 插件

每月 40 次下载
2 个crate中使用 (通过 istor)

MIT 许可证

5KB
89

minparse

一个极简参数解析器

安装

将其添加到您的 Cargo.toml

[dependencies]
minparse = "0.1.2"

用法

use minparse::minparse;

minparse::process_name();
// => Get process name <String>
minparse::switches();
// => Get options that do not require a value (e.g --help) Vec<String>
minparse::subcommands();
// => Subcommands (do not have prefixed `--`. Includes process name) Vec<String> example: vec!["cargo", "run"] 
minparse::fields()
// => Fields with a value (e.g. --port 8080) HashMap<String, String> 

捐赠

# Wallets to which you can donate :)

  BTC = "3NC14JNuzdLkxJTdNa6bnFXaYzMKMc1Uwt"
  ETH = "0xc41c0f847d58121f552c683e454ddafeb415f25e"
  XMR = "875smxvwbP64MFZnHrHwHcGahoEB4a5ARGCBidr95LqL4GEPiB4T8J74UB5TzrXK3wbTZ1iidfYoV37KZq1vqWCQSNztDAF"  

无运行时依赖