gif 0.11.0

GIF de- and encoder
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
language: rust
rust:
  - 1.34.2
  - stable
  - nightly
env:
  matrix:
    - FEATURES=''
script:
  - if [ "${TRAVIS_RUST_VERSION}" == "1.34.2" ]; then
      cargo build -v --features="$FEATURES";
    else
        cargo test -v --features="$FEATURES";
        cargo build --benches -v --features="$FEATURES";
    fi