[go: up one dir, main page]

clap 1.3.2

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 use self::arg::Arg;
pub use self::argmatches::ArgMatches;
pub use self::subcommand::SubCommand;
pub use self::argbuilder::{FlagBuilder, OptBuilder, PosBuilder};
pub use self::matchedarg::MatchedArg;
pub use self::group::ArgGroup;

mod arg;
mod argmatches;
mod subcommand;
mod argbuilder;
mod matchedarg;
mod group;