1environment:
2  matrix:
3    - APPVEYOR_RUST_CHANNEL: stable
4    - APPVEYOR_RUST_CHANNEL: nightly
5
6install:
7  # Install rust, x86_64-pc-windows-msvc host
8  - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
9  - rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain %APPVEYOR_RUST_CHANNEL%
10  - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
11  - rustc -vV
12  - cargo -vV
13
14build_script:
15  - cargo build --verbose
16
17test_script:
18  - cargo test --verbose
19