We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6bf2181 + e12ee9d commit 61a60d5Copy full SHA for 61a60d5
ci/ci-tests.sh
@@ -18,6 +18,9 @@ function PIN_RELEASE_DEPS {
18
# Here we opt to keep using unicode-rs by pinning idna_adapter as described here: https://docs.rs/crate/idna_adapter/1.2.0
19
[ "$RUSTC_MINOR_VERSION" -lt 67 ] && cargo update -p idna_adapter --precise "1.1.0" --verbose
20
21
+ # indexmap 2.6.0 upgraded to hashbrown 0.15, which unfortunately bumped their MSRV to rustc 1.65 with the 0.15.1 release
22
+ [ "$RUSTC_MINOR_VERSION" -lt 65 ] && cargo update -p [email protected] --precise "2.5.0" --verbose
23
+
24
return 0 # Don't fail the script if our rustc is higher than the last check
25
}
26
0 commit comments