version-sync 0.8.1

Simple crate for ensuring that version numbers in README files are updated when the crate version changes.
Documentation
environment:
  matrix:
  - TOOLCHAIN: stable
  - TOOLCHAIN: nightly

matrix:
  allow_failures:
    - TOOLCHAIN: nightly

install:
  - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
  - rustup-init.exe -y --default-toolchain %TOOLCHAIN%
  - set PATH=%PATH%;%USERPROFILE%\.cargo\bin

before_build:
  - cargo update

build_script:
  - cargo build --verbose

test_script:
  - cargo test --verbose

cache:
  - '%USERPROFILE%\.cargo'
  - target