clap 0.4.7

A Command Line Argument Parser written in Rust
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::flagarg::FlagArg;
pub use self::optarg::OptArg;
pub use self::posarg::PosArg;
pub use self::subcommand::SubCommand;

mod arg;
mod argmatches;
mod flagarg;
mod optarg;
mod posarg;
mod subcommand;