Crates.io | getopt3 |
lib.rs | getopt3 |
version | |
source | src |
created_at | 2023-03-24 17:59:21.846198+00 |
updated_at | 2025-02-25 22:04:49.117491+00 |
description | Zero dependency command line argument parser |
homepage | https://gitlab.com/hsn10/getopt3 |
repository | https://gitlab.com/hsn10/getopt3.git |
max_upload_size | |
id | 819587 |
Cargo.toml error: | TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Version 2.3.0 MIT Licensed
unsafe
Rust.no_std
Rust version in development.let g = getopt3::new(arguments, optstring)
getopt3::new constructor arguments:
std::env::args()
but you need to skip first
argument because its executable name. It can be done manually or by calling hideBin
utility function which strips first argument.Returned value:
getopt structure returned by constructor has following members:
You can run strictness check by calling validate(getopt) function. This function returns back Result with supplied getopt instance on success or error as String. It can detect if unknown options are encountered or required argument is missing and signal error.
use std::env::args;
use getopt3::hideBin;
let rc = getopt3::new(hideBin(args()), "ab:c");
if let Ok(g) = rc {
// command line options parsed sucessfully
if let Some(arg) = g.options.get(&'b') {
// handle b argument stored in arg
};
};