We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a248367 commit 4deb527Copy full SHA for 4deb527
ci/ci-tests.sh
@@ -21,6 +21,9 @@ PIN_RELEASE_DEPS # pin the release dependencies in our main workspace
21
# The addr2line v0.21 crate (a dependency of `backtrace` starting with 0.3.69) relies on rustc 1.65
22
[ "$RUSTC_MINOR_VERSION" -lt 65 ] && cargo update -p backtrace --precise "0.3.68" --verbose
23
24
+# The once_cell v1.21.0 crate (a dependency of `proptest`) relies on rustc 1.70
25
+[ "$RUSTC_MINOR_VERSION" -lt 70 ] && cargo update -p once_cell --precise "1.20.3" --verbose
26
+
27
# proptest 1.3.0 requires rustc 1.64.0
28
[ "$RUSTC_MINOR_VERSION" -lt 64 ] && cargo update -p proptest --precise "1.2.0" --verbose
29
0 commit comments