4 个版本
0.1.3 | 2022年9月14日 |
---|---|
0.1.2 | 2022年5月20日 |
0.1.1 | 2022年5月20日 |
0.1.0 | 2022年5月20日 |
#9 在 #cli-arguments
17KB
227 行
argpars
无依赖、简单实用的命令行参数解析器
特性
待办事项
用法
基本用法(更多信息请查看 examples/usage.rs 文件)
use argpars::*;
fn main() {
let mut args: ArgsObj = Argpars::new();
// Setting basic info about the app
args.help_usage = format!("Usage: {} [OPTION]... [TEST]\n", args.arguments_passed[0]);
args.help_name = "Test App".to_string();
args.help_description = "This is a test description".to_string();
args.help_version = "v1.0".to_string();
// Adding arguments into the app
args.add_argument("--print-stuff", "display \"stuff\"");
// This is how you execute something when no arguments were passed
if args.no_arguments_passed() {
args.display_help_screen();
}
// This is how you ignore other arguments when the default (help, version) or wrong ones were passed
else if args.default_arguments_passed() || args.wrong_arguments_passed() {
}
// Here you handle the rest of the arguments
else {
if args.passed("--print-stuff") {
println!("stuff");
}
}
// Executing Argpars parser and exiting from the app with a return value
std::process::exit(args.pars());
}
许可证
本项目在 MIT 许可协议下分发。