dpg 0.1.1

generate password(s) using diceware method & crypto secure random numbers
Documentation
env:
  - RUST_BACKTRACE=full
language: rust
rust:
  - stable
matrix:
  include:
    - os: linux
      dist: trusty
      sudo: false
    - os: osx
  fast_finish: true
cache: cargo
script:
  - cargo build --verbose
  - if [ $TRAVIS_OS_NAME == linux ]; then
      xvfb-run --server-args='-screen 0 1024x768x24' cargo test;
    else
      cargo test;
    fi