crossbeam-channel 0.2.4

Multi-producer multi-consumer channels for message passing
Documentation
language: rust

rust:
  - stable
  - beta
  - nightly
  - 1.26.0

script:
  - export RUSTFLAGS="-D warnings"
  - cargo build
  - cargo build --release
  - cargo test -- --test-threads=1
  - cargo test --release -- --test-threads=1
  - |
    if [[ $TRAVIS_RUST_VERSION == nightly ]]; then
      cd benchmarks
      cargo build --bins
      cargo build --bins --release
    fi