nicehash 0.2.0

NiceHash API in Rust.
clone_depth: 50
environment:
  matrix:
  - TARGET: nightly-x86_64-pc-windows-gnu
    MSYS_BITS: 64
  - TARGET: nightly-i686-pc-windows-gnu
    MSYS_BITS: 32
  - TARGET: beta-x86_64-pc-windows-gnu
    MSYS_BITS: 64
  - TARGET: beta-i686-pc-windows-gnu
    MSYS_BITS: 32
  - TARGET: 1.13.0-x86_64-pc-windows-gnu
    MSYS_BITS: 64
  - TARGET: 1.13.0-i686-pc-windows-gnu
    MSYS_BITS: 32

install:
  - ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-${env:TARGET}.exe" -FileName "rust-install.exe"
  - ps: .\rust-install.exe /VERYSILENT /NORESTART /DIR="C:\rust" | Out-Null
  - ps: $env:PATH="$env:PATH;C:\rust\bin"
  - if defined MSYS_BITS set PATH=C:\msys64\mingw%MSYS_BITS%\bin;C:\msys64\usr\bin;%PATH%
  - del .\rust-install.exe
  - rustc -vV
  - cargo -vV

build_script:
  - cargo build
  - cargo package

test_script:
  - cargo test