[go: up one dir, main page]

clap 1.4.4

A simple to use, efficient, and full featured Command Line Argument Parser
Documentation
1
2
3
4
5
6
7
8
9
#[allow(dead_code)]
mod settings;
mod app;
mod suggestions;
mod errors;

pub use self::settings::AppSettings;
pub use self::app::App;
pub use self::errors::{ClapError, ClapErrorType};