clap-v3 3.0.0-beta.1

A simple to use, efficient, and full-featured Command Line Argument Parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod errors;
pub mod features;

mod arg_matcher;
pub mod matches;
mod parser;
mod validator;

pub use self::arg_matcher::ArgMatcher;
pub use self::matches::ArgMatches;
pub use self::matches::{MatchedArg, OsValues, SubCommand, Values};
pub use self::parser::{Input, ParseResult, Parser};
pub use self::validator::Validator;