Update travis configuration and tweak Cargo.toml

This commit is contained in:
Peter Atashian
2017-08-23 19:46:14 -04:00
parent bc9686e3b8
commit d1196f0f10
2 changed files with 28 additions and 5 deletions
+26 -3
View File
@@ -1,11 +1,34 @@
language: rust
sudo: false
rust:
- 1.2.0
- beta
- nightly
script:
- cargo build
- rustup install 1.2.0 1.3.0 1.4.0 1.5.0 1.6.0 1.7.0 1.8.0 1.9.0
- rustup install 1.10.0 1.11.0 1.12.0 1.13.0 1.14.0 1.15.0 1.16.0 1.17.0 1.18.0 1.19.0
- rustup install stable beta nightly
- cargo +1.2.0 build
- cargo +1.3.0 build
- cargo +1.4.0 build
- cargo +1.5.0 build
- cargo +1.6.0 build
- cargo +1.7.0 build
- cargo +1.8.0 build
- cargo +1.9.0 build
- cargo +1.10.0 build
- cargo +1.11.0 build
- cargo +1.12.0 build
- cargo +1.13.0 build
- cargo +1.14.0 build
- cargo +1.15.0 build
- cargo +1.16.0 build
- cargo +1.17.0 build
- cargo +1.18.0 build
- cargo +1.19.0 build
- cargo +stable build
- cargo +beta build
- cargo +nightly build
- cargo build --features everything
- cargo package
- cargo doc
notifications:
email: false
+2 -2
View File
@@ -9,12 +9,12 @@ repository = "https://github.com/retep998/winapi-rs"
readme = "README.md"
keywords = ["windows", "ffi", "win32", "com", "directx"]
categories = ["external-ffi-bindings", "no-std", "os::windows-apis"]
include = ["src/**/*", "Cargo.toml", "LICENSE-MIT", "LICENSE-APACHE", "build.rs", "README.md"]
include = ["/src/**/*", "/Cargo.toml", "/LICENSE-MIT", "/LICENSE-APACHE", "/build.rs", "/README.md"]
build = "build.rs"
[package.metadata.docs.rs]
features = ["everything"]
default-target = "x86_64-pc-windows-gnu"
default-target = "x86_64-pc-windows-msvc"
[badges]
travis-ci = { repository = "retep998/winapi-rs", branch = "master" }