We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 50d21b7 + 3566b98 commit 8c1b3d1Copy full SHA for 8c1b3d1
ci/ci-tests.sh
@@ -8,6 +8,9 @@ HOST_PLATFORM="$(rustc --version --verbose | grep "host:" | awk '{ print $2 }')"
8
# which we do here.
9
# Further crates which appear only as dev-dependencies are pinned further down.
10
function PIN_RELEASE_DEPS {
11
+ # Starting with version 1.39.0, the `tokio` crate has an MSRV of rustc 1.70.0
12
+ [ "$RUSTC_MINOR_VERSION" -lt 70 ] && cargo update -p tokio --precise "1.38.1" --verbose
13
+
14
return 0 # Don't fail the script if our rustc is higher than the last check
15
}
16
0 commit comments