We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 112438b + 570907f commit 074caeaCopy full SHA for 074caea
.travis.yml
@@ -88,6 +88,14 @@ matrix:
88
- env: TARGET=x86_64-unknown-linux-gnu
89
rust: stable
90
91
+ # Test that we can build with the lowest version of all dependencies.
92
+ # "cargo test" doesn't work because some of our dev-dependencies, like
93
+ # rand, can't build with thier own minimal dependencies.
94
+ - rust: nightly
95
+ script:
96
+ - cargo update -Zminimal-versions
97
+ - cargo build
98
+
99
before_install: set -e
100
101
install:
Cargo.toml
@@ -18,7 +18,7 @@ exclude = [
18
[dependencies]
19
libc = { git = "https://github.com/rust-lang/libc", features = [ "extra_traits" ] }
20
bitflags = "1.0"
21
-cfg-if = "0.1.0"
+cfg-if = "0.1.2"
22
void = "1.0.2"
23
24
[target.'cfg(target_os = "dragonfly")'.build-dependencies]
0 commit comments