version-compare 0.0.11

A Rust library to easily compare version numbers, and test them against various comparison operators.
Documentation
environment:
  RUSTUP_USE_HYPER: 1
  CARGO_HTTP_CHECK_REVOKE: false

  matrix:
    - TARGET: x86_64-pc-windows-msvc
      OTHER_TARGET: i686-pc-windows-msvc
      MAKE_TARGETS: test-unit-x86_64-pc-windows-msvc

install:
  - appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
  - rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain nightly
  - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
  - rustup target add %OTHER_TARGET%
  - rustc -V
  - cargo -V
  - git submodule update --init

clone_depth: 1

build: false

test_script:
  - cargo build
  - cargo test
  - cargo run --example example
  - cargo run --example minimal
  - cargo bench