pgetopts 0.1.2

getopts-like option parsing, a fork of the Rust team's getopts.
Documentation
pgetopts
===
[![Build Status](https://travis-ci.org/0X1A/pgetopts.svg)](https://travis-ci.org/0X1A/pgetopts)

A Rust library for option parsing for CLI utilities, a fork of the Rust team's
[getopts](https://github.com/rust-lang/getopts)

## Usage

Add this to your `Cargo.toml`:

```toml
[dependencies]
pgetopts = "0.1.0"
```

and this to your crate root:

```rust
extern crate pgetopts;
```