stderrlog 0.5.0

Logger that logs to stderr based on verbosity specified
Documentation
sudo: false
language: rust
cache: cargo
rust:
  - nightly
  - beta
  - stable
  - 1.31.0 # minimum supported version
script:
  - if [ ${TRAVIS_RUST_VERSION} = "nightly" ]; then
      cargo generate-lockfile;
      cargo +nightly update -Z minimal-versions;
    else
      cargo generate-lockfile;
    fi
  - cargo build --verbose --locked
  - cargo test --verbose --locked
  - if [ ${TRAVIS_RUST_VERSION} = "nightly" ]; then
      cargo bench;
    fi