Skip to content

Commit 6e85a0d

Browse files
authored
Merge pull request #3484 from arik-so/fix-msrv-rustls
Fix MSRV dependencies
2 parents 830a027 + a97e2b8 commit 6e85a0d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ci/ci-tests.sh

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ function PIN_RELEASE_DEPS {
2121
# indexmap 2.6.0 upgraded to hashbrown 0.15, which unfortunately bumped their MSRV to rustc 1.65 with the 0.15.1 release (and 2.7.0 was released since).
2222
[ "$RUSTC_MINOR_VERSION" -lt 65 ] && cargo update -p [email protected] --precise "2.5.0" --verbose
2323

24+
# Starting with version 0.23.20, the `rustls` crate has an MSRV of rustc 1.71.0
25+
[ "$RUSTC_MINOR_VERSION" -lt 71 ] && cargo update -p [email protected] --precise "0.23.19" --verbose
26+
2427
return 0 # Don't fail the script if our rustc is higher than the last check
2528
}
2629

0 commit comments

Comments
 (0)