Build Status Discord

clipars

Command line parser for Rust

Requirements - Rust >= 1.31 - Cargo >= 1.31

```rust extern crate clipars;

use clipars::Command; use std::env;

let args: Vec = env::args().collect(); let command = Command::from(&args, &["option"]); ```