stderrlog 0.2.4

Logger that logs to stderr based on verbosity specified
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
sudo: false
language: rust
cache: cargo
rust:
  - nightly
  - beta
  - stable
  - 1.13.0 # currently oldest supported version
script:
  - cargo build --verbose
  - cargo test --verbose
  - if [ ${TRAVIS_RUST_VERSION} = "nightly" ]; then
        cargo bench;
    fi