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
#[macro_use]
mod macros;

pub mod app;
pub mod arg;

mod arg_group;
mod usage_parser;

pub use self::app::{App, AppSettings};
pub use self::arg::{Arg, ArgSettings};
pub use self::arg_group::ArgGroup;