Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/walkdir.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Finkelman <YeomanYaacov@gmail.com>2018-08-25 01:55:24 +0300
committerAndrew Gallant <jamslam@gmail.com>2018-08-25 01:55:24 +0300
commitddf3f297177132f73c7d21e31e0fddab239d5d7e (patch)
treefd0d37d4036544d8dfd64ca434350ea5ca0b35b2
parentedea9ea2d462be3a25068c9f1547f6d04e816dec (diff)
deps: update for minimal-versions
PR #112
-rw-r--r--.travis.yml5
-rw-r--r--Cargo.toml4
-rw-r--r--appveyor.yml3
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: