We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5e7930f + 38936b8 commit ee0830cCopy full SHA for ee0830c
1 file changed
ci/ci-tests.sh
@@ -27,6 +27,15 @@ PIN_RELEASE_DEPS # pin the release dependencies in our main workspace
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
30
+# parking_lot 0.12.4 requires rustc 1.64.0
31
+[ "$RUSTC_MINOR_VERSION" -lt 64 ] && cargo update -p parking_lot --precise "0.12.3" --verbose
32
+
33
+# parking_lot_core 0.9.11 requires rustc 1.64.0
34
+[ "$RUSTC_MINOR_VERSION" -lt 64 ] && cargo update -p parking_lot_core --precise "0.9.10" --verbose
35
36
+# lock_api 0.4.13 requires rustc 1.64.0
37
+[ "$RUSTC_MINOR_VERSION" -lt 64 ] && cargo update -p lock_api --precise "0.4.12" --verbose
38
39
export RUST_BACKTRACE=1
40
41
echo -e "\n\nChecking the workspace, except lightning-transaction-sync."
0 commit comments