climake 2.1.0

The simple, dependency-less cli library ✨
Documentation
climake-2.1.0 has been yanked.

climake

The simple, dependency-less cli library ✨

Example 📚

use climake::{Argument, CLIMake, DataType};

fn main() {
    let args = &[
        Argument::new(
            &['o'],
            &["output", "out"],
            Some("Example output arg"),
            DataType::Files,
        ).unwrap(),
        Argument::new(
            &['a', 'b', 'c'],
            &[],
            Some("Alphabet!"),
            DataType::None,
        ).unwrap(),
    ];

    let cli = CLIMake::new(args, Some("A showcase CLI to demonstrate climake"), None).unwrap();

    println!("Args used:\n{:#?}", cli.parse());
}

Installation 🚀

Simply add the following to your Cargo.toml file:

[dependencies]
climake = "2.1"

License

Duel-licensed under both the MIT License (LICENSE-MIT) and Apache 2.0 License (LICENSE-APACHE), you may choose at your discretion.