clap/src/lib.rs

17 lines
315 B
Rust
Raw Normal View History

2015-02-28 03:19:48 +00:00
#![crate_id = "clap"]
#![crate_type= "lib"]
2015-02-27 16:12:23 +00:00
#![feature(collections, core, libc, env)]
2015-02-26 21:25:40 +00:00
2015-02-28 03:19:48 +00:00
//! A simply library for parsing command line arguments when writing
2015-02-28 14:40:53 +00:00
//! command line and console applications.
2015-02-28 03:19:48 +00:00
2015-02-28 15:45:31 +00:00
pub use argmatches::ArgMatches;
2015-02-25 13:37:25 +00:00
pub use arg::Arg;
pub use app::App;
mod app;
mod argmatches;
mod arg;
mod args;