From ddf3f297177132f73c7d21e31e0fddab239d5d7e Mon Sep 17 00:00:00 2001 From: Jacob Finkelman Date: Fri, 24 Aug 2018 18:55:24 -0400 Subject: deps: update for minimal-versions PR #112 --- .travis.yml | 5 +++++ Cargo.toml | 4 ++-- appveyor.yml | 3 +++ 3 files changed, 10 insertions(+), 2 deletions(-) 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/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" 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: -- cgit v1.2.3