Pin rustls on MSRV

This commit is contained in:
Arik Sosman 2024-12-11 22:40:57 -08:00
parent 641e40f69d
commit a97e2b88be
No known key found for this signature in database
GPG Key ID: CFF795E7811C0093

View File

@ -21,6 +21,9 @@ function PIN_RELEASE_DEPS {
# 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).
[ "$RUSTC_MINOR_VERSION" -lt 65 ] && cargo update -p indexmap@2.7.0 --precise "2.5.0" --verbose
# Starting with version 0.23.20, the `rustls` crate has an MSRV of rustc 1.71.0
[ "$RUSTC_MINOR_VERSION" -lt 71 ] && cargo update -p rustls@0.23.20 --precise "0.23.19" --verbose
return 0 # Don't fail the script if our rustc is higher than the last check
}