genpass 0.2.6

A simple yet robust commandline random password generator.
# genpass [![Build Status]https://travis-ci.org/cyplo/genpass.svg?branch=master]https://travis-ci.org/cyplo/genpass

A simple yet robust commandline random password generator.  

Multiplatform (Linux, Mac, Windows).  
Fast.

## Installation
On a system with [Rust](https://www.rust-lang.org/en-US/) installed: 
```
$ cargo install genpass
```

## Usage
```
$ genpass -h

USAGE:
    genpass [FLAGS] [length]

FLAGS:
    -h, --help       Prints help information
    -d               Include at least one digit
    -l               Include at least one lowercase letter
    -s               Include at least one (non alphanumeric) special character
    -u               Include at least one uppercase letter
    -V, --version    Prints version information

ARGS:
    <length>     [default: 32]
```

## A road to 1.0

TODOs to get `genpass` to 1.0

* [support custom sets of characters]https://github.com/cyplo/genpass/issues/4
* [add benchmarks]https://github.com/cyplo/genpass/issues/5
* [test entropy of generated passwords]https://github.com/cyplo/genpass/issues/6

## Contributing
All contributions welcome !  
Ideally - start a discussion with an issue first before contributing a PR.