imagecli 0.2.0

A command line image processing tool.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
language: rust

rust:
  - stable
  - beta
  - nightly

script:
  - cargo build -v
  - if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then cargo test -v; fi
  - |
    if [ "$TRAVIS_RUST_VERSION" = "stable" ]; then
      rustup component add rustfmt
      cargo fmt --all -- --check
    fi
  - cargo doc -v