Documentation
sudo: false
language: rust
rust:
  - nightly
  - beta
  - stable
# https://github.com/huonw/travis-cargo
addons:
  apt:
    packages:
      - libcurl4-openssl-dev
      - libelf-dev
      - libdw-dev
      - binutils-dev
before_script:
  - pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH
script:
  - travis-cargo build && travis-cargo test
after_success:
  - travis-cargo --only stable coveralls --no-sudo --verify
env:
  global:
    # override the default `--features unstable` used for the nightly branch (optional)
    - TRAVIS_CARGO_NIGHTLY_FEATURE=""
services:
  - redis-server