clap/src/lib.rs

21 lines
330 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
//! command line applications.
2015-02-25 13:37:25 +00:00
pub use argmatches::ArgMatches;
pub use arg::Arg;
pub use app::App;
mod app;
mod argmatches;
mod arg;
mod args;
#[test]
fn it_works() {
}