mysql 11.0.0

Mysql client library implemented in rust
Documentation
version: 1.0.{build}
branches:
  only:
  - master
clone_folder: c:\clone
environment:
  MYSQL_SERVER_PORT: 3306
  MYSQL_SERVER_PASS: Password12!
  MYSQL_PWD: Password12!
  matrix:
  - RUST_URL: https://static.rust-lang.org/dist/rust-nightly-x86_64-pc-windows-gnu.msi
    RUST_INSTALLER: rust-nightly-x86_64-pc-windows-gnu.msi
  - RUST_URL: https://static.rust-lang.org/dist/rust-beta-x86_64-pc-windows-gnu.msi
    RUST_INSTALLER: rust-beta-x86_64-pc-windows-gnu.msi
  - RUST_URL: https://static.rust-lang.org/dist/rust-1.15.1-x86_64-pc-windows-gnu.msi
    RUST_INSTALLER: rust-1.15.1-x86_64-pc-windows-gnu.msi
services: mysql
install:
- cmd: >-
    appveyor DownloadFile %RUST_URL%

    msiexec /i %RUST_INSTALLER% INSTALLDIR="c:\rust" /qn

    SET PATH=c:\rust\bin;%PATH%
build: off
before_test:
- ps: >-
    $iniPath="C:\ProgramData\MySQL\MySQL Server 5.7\my.ini"

    $newText = ([System.IO.File]::ReadAllText($iniPath)).Replace("# enable-named-pipe", "enable-named-pipe")

    [System.IO.File]::WriteAllText($iniPath, $newText)

    Restart-Service MySQL57

test_script:
- cmd: >-
    "C:\Program Files\MySql\MySQL Server 5.7\bin\mysql" -e "set global max_allowed_packet = 36700160;" --user=root

    SET RUST_BACKTRACE=1

    cargo test && cargo test --no-default-features --features serde_integration && cargo test --no-default-features --features ssl