Skip to content

Commit c3dfaa2

Browse files
committed
Patch version dependencies for our test suite.
1 parent be25b41 commit c3dfaa2

File tree

6 files changed

+14
-5
lines changed

6 files changed

+14
-5
lines changed

extras/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,7 @@ opt-level = 3
1919
debug = false
2020
debug-assertions = false
2121
lto = true
22+
23+
# FIXME: Support 0.61.0+ when we only support Rustc 1.71.0+.
24+
[patch.crates-io]
25+
windows-sys = { git = "https://github.com/microsoft/windows-rs.git", rev = "308e08e" }

extras/parse-float/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ default-features = false
2323
# Issue: https://github.com/BurntSushi/quickcheck/issues/295
2424
# Fix: https://github.com/BurntSushi/quickcheck/pull/296
2525
quickcheck = { git = "https://github.com/Alexhuszagh/quickcheck/", branch = "i32min-shrink-bound-legacy" }
26-
proptest = ">=1.5.0"
26+
# FIXME: Support 1.7.0+ when we only support Rustc 1.66.0+.
27+
proptest = ">=1.5.0, <1.7.0"
2728

2829
[features]
2930
default = ["std"]

extras/parse-integer/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ default-features = false
2323
# Issue: https://github.com/BurntSushi/quickcheck/issues/295
2424
# Fix: https://github.com/BurntSushi/quickcheck/pull/296
2525
quickcheck = { git = "https://github.com/Alexhuszagh/quickcheck/", branch = "i32min-shrink-bound-legacy" }
26-
proptest = ">=1.5.0"
26+
# FIXME: Support 1.7.0+ when we only support Rustc 1.66.0+.
27+
proptest = ">=1.5.0, <1.7.0"
2728

2829
[features]
2930
default = ["std"]

extras/util/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ default-features = false
1919
# Issue: https://github.com/BurntSushi/quickcheck/issues/295
2020
# Fix: https://github.com/BurntSushi/quickcheck/pull/296
2121
quickcheck = { git = "https://github.com/Alexhuszagh/quickcheck/", branch = "i32min-shrink-bound-legacy" }
22-
proptest = ">=1.5.0"
22+
# FIXME: Support 1.7.0+ when we only support Rustc 1.66.0+.
23+
proptest = ">=1.5.0, <1.7.0"
2324

2425
[features]
2526
default = ["std"]

extras/write-float/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ approx = "0.5.0"
2828
# Issue: https://github.com/BurntSushi/quickcheck/issues/295
2929
# Fix: https://github.com/BurntSushi/quickcheck/pull/296
3030
quickcheck = { git = "https://github.com/Alexhuszagh/quickcheck/", branch = "i32min-shrink-bound-legacy" }
31-
proptest = ">=1.5.0"
3231
fraction = "0.15.0"
32+
# FIXME: Support 1.7.0+ when we only support Rustc 1.66.0+.
33+
proptest = ">=1.5.0, <1.7.0"
3334

3435
[features]
3536
default = ["std"]

extras/write-integer/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ default-features = false
2323
# Issue: https://github.com/BurntSushi/quickcheck/issues/295
2424
# Fix: https://github.com/BurntSushi/quickcheck/pull/296
2525
quickcheck = { git = "https://github.com/Alexhuszagh/quickcheck/", branch = "i32min-shrink-bound-legacy" }
26-
proptest = ">=1.5.0"
2726
rustversion = ">=1.0.18"
27+
# FIXME: Support 1.7.0+ when we only support Rustc 1.66.0+.
28+
proptest = ">=1.5.0, <1.7.0"
2829

2930
[features]
3031
default = ["std"]

0 commit comments

Comments
 (0)