rusoto 0.24.2

AWS SDK for Rust
Documentation
# from https://github.com/japaric/rust-everywhere and https://github.com/yupferris/rustendo64/blob/master/appveyor.yml

os: Visual Studio 2015

environment:
  global:
    # This will be used as part of the zipfile name
    PROJECT_NAME: rusoto
  matrix:
    - TARGET: x86_64-pc-windows-msvc
      CHANNEL: stable
cache:
  - 'C:\Users\appveyor\.cargo'
# Install Rust and Cargo
# (Based on from https://github.com/rust-lang/libc/blob/master/appveyor.yml)
install:
  - curl -sSf -o rustup-init.exe https://win.rustup.rs
  - rustup-init.exe --default-host %TARGET% --default-toolchain %CHANNEL% -y
  - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin;c:\cygwin\bin
  - rustc -Vv
  - cargo -V
  - git submodule update --init --recursive

# Equivalent to Travis' `script` phase
build_script:
  # We only build and test a subset due to https://github.com/rusoto/rusoto/issues/537
  - cargo build --features "packagea" -vv
  - cargo build --features "packageb" -vv
test_script:
  - cargo test --lib --features "packagea"
  - cargo test --lib --features "packageb"

branches:
  only:
    - master