parking_lot 0.5.1

More compact and efficient implementations of the standard synchronization primitives.
Documentation
language: rust
sudo: false

rust:
- 1.18.0
- stable
- beta
- nightly

before_script:
- |
  pip install 'travis-cargo<0.2' --user &&
  export PATH=$HOME/.local/bin:$PATH

script:
- cd core;
- travis-cargo build;
- cd ..;
- travis-cargo build
- travis-cargo test
- travis-cargo test -- --features=deadlock_detection
- travis-cargo --only nightly doc -- --all-features --no-deps -p parking_lot -p parking_lot_core
- if [ "$TRAVIS_RUST_VERSION" != "1.8.0" ]; then
      cd benchmark;
      travis-cargo build;
      travis-cargo run -- --release --bin mutex 2 1 0 1;
      travis-cargo run -- --release --bin rwlock 1 1 1 0 1;
      cd ..;
  fi

after_success:
- travis-cargo --only nightly doc-upload

env:
  global:
  - TRAVIS_CARGO_NIGHTLY_FEATURE=nightly
  - RUST_TEST_THREADS=1

notifications:
  email: false