y4m 0.7.0

YUV4MPEG2 (.y4m) Encoder/Decoder.
Documentation
language: rust
rust:
  - stable
  - beta
  - nightly

before_install:
  - if [[ "$TRAVIS_RUST_VERSION" == *stable* ]]; then rustup component add rustfmt; cargo fmt --version; fi

script:
  - if [[ "$TRAVIS_RUST_VERSION" == *stable* ]]; then cargo fmt -- --check || (echo "Please reformat your code with 'cargo fmt' (version $(cargo fmt --version))"; false); fi
  - cargo build -v
  - cargo test -v
  - cargo doc -v
after_success:
  - curl http://docs.piston.rs/travis-doc-upload.sh | sh