From 817e102e0588153874b529a9fb550b44b81e3ca3 Mon Sep 17 00:00:00 2001 From: Eh2406 Date: Fri, 24 Aug 2018 17:10:53 -0400 Subject: [PATCH 1/2] update some debs mostly for minimal-versions --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8206f3b..057e399 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,14 +16,14 @@ travis-ci = { repository = "BurntSushi/walkdir" } appveyor = { repository = "BurntSushi/walkdir" } [dependencies] -same-file = "1" +same-file = "1.0.1" [target.'cfg(windows)'.dependencies.winapi] version = "0.3" features = ["std", "fileapi", "winbase", "winnt"] [dev-dependencies] -docopt = "1" +docopt = "1.0.1" quickcheck = { version = "0.6", default-features = false } rand = "0.4" serde = "1" From 2e20773f5a8acb74cf378153067bfc5467bbbaea Mon Sep 17 00:00:00 2001 From: Eh2406 Date: Fri, 24 Aug 2018 17:27:12 -0400 Subject: [PATCH 2/2] add minimal-versions to CI --- .travis.yml | 5 +++++ appveyor.yml | 3 +++ 2 files changed, 8 insertions(+) diff --git a/.travis.yml b/.travis.yml index 42b1d4d..214ddc4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,6 +15,11 @@ script: - cargo build --verbose - cargo test --verbose - cargo doc + - if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then + cargo +nightly generate-lockfile -Z minimal-versions; + cargo build --verbose; + cargo test --verbose; + fi branches: only: - master diff --git a/appveyor.yml b/appveyor.yml index 4aace16..22d2842 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -17,6 +17,9 @@ build: false test_script: - cargo build --verbose - cargo test --verbose + - cargo generate-lockfile -Z minimal-versions + - cargo build --verbose + - cargo test --verbose branches: only: