File tree 3 files changed +14
-3
lines changed
3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,13 @@ matrix:
66
66
env : DESCRIPTION="Miri, nightly"
67
67
script :
68
68
- sh utils/ci/miri.sh
69
+
70
+ - rust : nightly
71
+ os : linux
72
+ env : DESCRIPTION="Minimal dep versions"
73
+ script :
74
+ - cargo generate-lockfile -Z minimal-versions
75
+ - bash utils/ci/script.sh
69
76
70
77
before_install :
71
78
- set -e
Original file line number Diff line number Diff line change @@ -24,4 +24,6 @@ rand = { path = "..", version = "0.7" }
24
24
[dev-dependencies ]
25
25
rand_pcg = { version = " 0.2" , path = " ../rand_pcg" }
26
26
# Histogram implementation for testing uniformity
27
- average = " 0.9.2"
27
+ average = " 0.10.0"
28
+ # Not a direct dependency but required to boost the minimum version:
29
+ conv = " 0.3.2"
Original file line number Diff line number Diff line change @@ -23,9 +23,11 @@ serde1 = ["serde", "rand_core/serde1"]
23
23
24
24
[dependencies ]
25
25
rand_core = { path = " ../rand_core" , version = " 0.5" }
26
- serde = { version = " 1" , features = [" derive" ], optional = true }
26
+ serde = { version = " 1.0.63" , features = [" derive" ], optional = true }
27
+ # Not a direct dependency but required to boost the minimum version:
28
+ serde_derive = { version = " 1.0.63" , optional = true }
27
29
28
30
[dev-dependencies ]
29
31
# This is for testing serde, unfortunately we can't specify feature-gated dev
30
32
# deps yet, see: https://github.com/rust-lang/cargo/issues/1596
31
- bincode = " 1"
33
+ bincode = " 1.1.4 "
You can’t perform that action at this time.
0 commit comments