15 releases (8 breaking)

0.8.0 Nov 12, 2024
0.7.2 Jun 28, 2023
0.7.1 Nov 16, 2022
0.6.2 Oct 23, 2016
0.5.1 Jul 9, 2015

#842 in Command-line interface

Download history 198/week @ 2024-12-01 184/week @ 2024-12-08 162/week @ 2024-12-15 144/week @ 2024-12-22 123/week @ 2024-12-29 232/week @ 2025-01-05 179/week @ 2025-01-12 258/week @ 2025-01-19 375/week @ 2025-01-26 460/week @ 2025-02-02 658/week @ 2025-02-09 408/week @ 2025-02-16 354/week @ 2025-02-23 211/week @ 2025-03-02 213/week @ 2025-03-09 157/week @ 2025-03-16

976 downloads per month
Used in 7 crates

Apache-2.0/MIT

9KB
132 lines

Arguments Package Documentation Build

The package provides a parser for command-line arguments.

Example

// foo --no-bar --baz 42 --baz 69 --qux "Hello, world!"
let arguments = std::env::args();
let arguments = arguments::parse(arguments).unwrap();

assert_eq!(arguments.program, "foo");
assert_eq!(arguments.get::<bool>("bar").unwrap(), false);
assert_eq!(arguments.get::<usize>("baz").unwrap(), 69);
assert_eq!(arguments.get_all::<usize>("baz").unwrap(), &[42, 69]);
assert_eq!(arguments.get::<String>("qux").unwrap(), "Hello, world!");

Contribution

Your contribution is highly appreciated. Do not hesitate to open an issue or a pull request. Note that any contribution submitted for inclusion in the project will be licensed according to the terms given in LICENSE.md.

Dependencies

~10KB