Arguments Version Status

The package provides a parser for command-line arguments.

Documentation

Example

```rust use arguments::Arguments;

let args = std::env::args(); // foo --bar --buz qux let Arguments { program, options, .. } = arguments::parse(args).unwrap();

println!("Foo: {}", program); println!("Bar: {}", options.get::("bar").unwrap()); println!("Buz: {}", options.get::("buz").unwrap()); ```

Contributing

  1. Fork the project.
  2. Implement your idea.
  3. Open a pull request.