prost-bytes05 0.0.2

A Protocol Buffers implementation for the Rust Language.
Documentation
language: rust
dist: xenial

# Even though this build script doesn't use sudo, we enable it in order to get
# more memory. Previously on the container infrastructure the OOM killer would
# come in and kill either the GCC processes compiling protobuf, or rustc. See
# https://github.com/travis-ci/travis-ci/issues/7427 for the source of this
# workaround.
sudo: required

cache: cargo

os:
  - linux
  - osx

rust:
  - 1.39.0
  - nightly

script:
  - cargo build --verbose --all --exclude benchmarks
  - cargo test --verbose --all --exclude benchmarks
  - if [[ $TRAVIS_RUST_VERSION = nightly* ]]; then
      cargo bench --verbose --no-run;
    fi