lift-fail 0.1.0

A library to handle `failure` in an iterable collection.
Documentation
branches:
  except:
    - gh_pages
os:
  - Visual Studio 2015
environment:
  matrix:
    - TARGET: i686-pc-windows-msvc
      BITS: 32
    - TARGET: x86_64-pc-windows-msvc
      BITS: 64
install:
  # Install Rust
  - curl -sSf -o rustup-init.exe https://win.rustup.rs/
  - rustup-init.exe -y --default-toolchain=stable-%TARGET%
  - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
  - rustc -V
  - cargo -V

build: false

test_script:
  - cargo build
  - cargo test

cache:
  - target
  - C:\Users\appveyor\.cargo\registry