5 releases

Uses old Rust 2015

0.1.4 Sep 8, 2019
0.1.3 Sep 5, 2019
0.1.2 Dec 10, 2018
0.1.1 Nov 8, 2018
0.1.0 Nov 5, 2018

#833 in Command-line interface

Download history 3668/week @ 2023-12-16 1489/week @ 2023-12-23 4408/week @ 2023-12-30 3860/week @ 2024-01-06 4897/week @ 2024-01-13 5082/week @ 2024-01-20 2970/week @ 2024-01-27 4608/week @ 2024-02-03 5396/week @ 2024-02-10 5246/week @ 2024-02-17 6125/week @ 2024-02-24 6624/week @ 2024-03-02 5245/week @ 2024-03-09 3694/week @ 2024-03-16 4861/week @ 2024-03-23 4532/week @ 2024-03-30

18,666 downloads per month
Used in 34 crates (7 directly)

MITNFA license

29KB
454 lines

Parse arg

Traits and implementations for parsing command-line arguments.

About

This crate provides traits and implementations for parsing command-line arguments. The core of the crate is ParseArg trait. It works much like FromStr trait, but with these differences:

  • It operates on &OsStr instead of &str, thus allowing wider range of possible inputs.
  • It provides parse_owned_arg() method which can be specialized to avoid allocations.
  • It requires the implementor to provide describe_type() to print human-readable description. of expected input.
  • It requires the error type to implement Display in order to enable user-friendly interface.

Further, the crate provides ParseArgFromStr trait, which causes any type implementing it to auto-implement ParseArg trait. This is handy when implementing ParseArg for types that already have FromStr implemented, so that boilerplate is reduced.

Since matching both --foo VAL and --foo=VAL arguments is common and it's not an easy task to implement on top of OsStr, due to limitation of std, this crate also provides a function to match and parse such arguments.

Further, since many programs support -xVAL style parameters and short switches grouped into a single argument, which isn't easy to achieve using OsStr either, this crate provides a helper for this too.

Contibutions

I will merge new implementations liberally, provided these conditions are met:

  • The type is either in std or in another crate which is added as an optional dependency.
  • The description of the type is gramatically correct, readable explanation of the type, that can be appended to the string "The input must be " without sounding unnatural.
  • The user must be able to know how to formt the input based on the description without any googling. In case of doubt provide more precise description in parentheses.
  • Your contribution is licensed under MIT or MITNFA license.

License

MITNFA

No runtime deps