Ace

Build Status Crates.io LICENSE

A simple command line parameter parsing library

## Install

Add this in your Cargo.toml:

toml [dependencies] ace = "0.0.2"

## Example

```rust use ace::App;

let app = App::new("ace", env!("CARGOPKGVERSION")) .cmd("start", "Start now") .cmd("help", "Display help information") .cmd("version", "Display version information") .opt("--config", "Use configuration file");

if let Some(cmd) = app.command() { match cmd.asstr() { "start" => { dbg!(app.value("--config")); } "help" => { app.help(); } "version" => { app.version(); } _ => { app.errortry("help"); } } } ```