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 cb650a8 + 8a8e0f7 commit d33284fCopy full SHA for d33284f
ci/ci-tests.sh
@@ -14,6 +14,10 @@ function PIN_RELEASE_DEPS {
14
# Starting with version 0.7.12, the `tokio-util` crate has an MSRV of rustc 1.70.0
15
[ "$RUSTC_MINOR_VERSION" -lt 70 ] && cargo update -p tokio-util --precise "0.7.11" --verbose
16
17
+ # url 2.5.3 switched to idna 1.0.3 and ICU4X, which requires rustc 1.67 or newer.
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
return 0 # Don't fail the script if our rustc is higher than the last check
22
}
23
0 commit comments