1install: 2 - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe 3 - rustup-init -yv --default-toolchain nightly 4 - set PATH=%PATH%;%USERPROFILE%\.cargo\bin 5 - rustc -V 6 - cargo -V 7 - git submodule update --init --recursive 8 9build: false 10 11environment: 12 RUST_BACKTRACE: full 13 14test_script: 15 - cargo build --verbose --all 16 - cargo doc --verbose --all --no-deps 17 18 - cargo test --verbose --all 19 - cargo test --verbose --all --features serde 20