convey 0.2.0

A Rust create for outputting information and log messages for humans and machines
Documentation
language: rust
rust:
- stable
- beta
- nightly

script:
- cargo test --all
- cargo check --no-default-features

matrix:
  include:
  - rust: 1.31.1
    env: CLIPPY=YESPLEASE
    before_script: rustup component add clippy-preview
    script: cargo clippy --all-targets --all -- -D warnings
  - rust: 1.31.1
    env: RUSTFMT=YESPLEASE
    before_script: rustup component add rustfmt-preview
    script: cargo fmt --all -- --check

branches:
  except:
  - staging.tmp

cache: cargo

notifications:
  email:
    on_success: never