---
language: rust
rust:
- nightly
- stable
# Earliest supported version of Rust. Do not change this without a github
# issue discussion.
- 1.14.0
matrix:
allow_failures:
- rust: nightly
before_script:
- pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH
script:
- cargo build
- RUST_BACKTRACE=1 cargo test
- cargo doc --no-deps
# after_success:
# - travis-cargo --only stable doc-upload
notifications:
email:
on_success: never