[![Build Status](https://travis-ci.com/ltheinrich/clipars.svg)](https://travis-ci.com/ltheinrich/clipars) [![Discord](https://img.shields.io/discord/488792767657410560.svg)](https://discord.gg/jjRruxx) # 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"]); ```