rust_cli 0.1.0

A mixin for creating command line applications - gives an easy interface for argument specification and processing used by https://www.megam.io https://www.megam.io. An implementation using rust_cli can be found at https://github.com/megamsys/meg.git
extern crate rustc_serialize;
extern crate turbo;
extern crate hamcrest;
extern crate term;
extern crate tempdir;

#[macro_use]
extern crate log;

mod support;
macro_rules! test {
    ($name:ident $expr:expr) => (
        #[test]
        fn $name() {
            $expr;
        }
    )
}

mod test_shell;