We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bf621b commit e66c08eCopy full SHA for e66c08e
1 file changed
ci/ci-tests.sh
@@ -29,6 +29,12 @@ function PIN_RELEASE_DEPS {
29
# Starting with version 1.0.21, the `ryu` crate has an MSRV of rustc 1.68
30
[ "$RUSTC_MINOR_VERSION" -lt 68 ] && cargo update -p ryu --precise "1.0.20" --verbose
31
32
+ # Starting with version 1.0.23, the `unicode-ident` crate has an MSRV of rustc 1.71
33
+ [ "$RUSTC_MINOR_VERSION" -lt 71 ] && cargo update -p unicode-ident --precise 1.0.22
34
+
35
+ # Starting with version 0.2.184, the `libc` crate has an MSRV of rustc 1.65
36
+ [ "$RUSTC_MINOR_VERSION" -lt 65 ] && cargo update -p libc --precise 0.2.183 --verbose
37
38
return 0 # Don't fail the script if our rustc is higher than the last check
39
}
40
0 commit comments