]> Untitled Git - bdk/commitdiff
ci: fix MSRV build by pinning tokio-util to 0.7.8
authorSteve Myers <steve@notmandatory.org>
Tue, 26 Sep 2023 02:08:52 +0000 (21:08 -0500)
committerSteve Myers <steve@notmandatory.org>
Tue, 26 Sep 2023 02:09:46 +0000 (21:09 -0500)
.github/workflows/cont_integration.yml
README.md

index 08243579451936f162853fa9aaf3752f12959a88..e8e47fd636faab218de8f3c61a0c0bd068243cc1 100644 (file)
@@ -35,11 +35,12 @@ jobs:
           cargo update -p rustls:0.21.7 --precise "0.21.1"
           cargo update -p rustls:0.20.9 --precise "0.20.8"
           cargo update -p tokio:1.32.0 --precise "1.29.1"
+          cargo update -p tokio-util --precise "0.7.8"
           cargo update -p flate2:1.0.27 --precise "1.0.26"
           cargo update -p reqwest --precise "0.11.18"
           cargo update -p h2 --precise "0.3.20"
           cargo update -p rustls-webpki:0.100.3 --precise "0.100.1"
-          cargo update -p rustls-webpki:0.101.5 --precise "0.101.1"
+          cargo update -p rustls-webpki:0.101.6 --precise "0.101.1"
           cargo update -p zip:0.6.6 --precise "0.6.2"
       - name: Build
         run: cargo build ${{ matrix.features }}
index 3969c8ed0d84b9fb65213bcfe1728a22fb23b904..d3c56f1662be2735e89af3c38b5a85f1a40f28a4 100644 (file)
--- a/README.md
+++ b/README.md
@@ -75,6 +75,8 @@ cargo update -p rustls:0.21.7 --precise "0.21.1"
 cargo update -p rustls:0.20.9 --precise "0.20.8"
 # tokio 1.30 has MSRV 1.63.0+
 cargo update -p tokio:1.32.0 --precise "1.29.1"
+# tokio-util 0.7.9 doesn't build with MSRV 1.57.0
+cargo update -p tokio-util --precise "0.7.8"
 # flate2 1.0.27 has MSRV 1.63.0+
 cargo update -p flate2:1.0.27 --precise "1.0.26"
 # reqwest 0.11.19 has MSRV 1.63.0+
@@ -84,7 +86,7 @@ cargo update -p h2 --precise "0.3.20"
 # rustls-webpki 0.100.2 has MSRV 1.60.0+
 cargo update -p rustls-webpki:0.100.3 --precise "0.100.1"
 # rustls-webpki 0.101.2 has MSRV 1.60.0+
-cargo update -p rustls-webpki:0.101.5 --precise "0.101.1"
+cargo update -p rustls-webpki:0.101.6 --precise "0.101.1"
 # zip 0.6.3 has MSRV 1.59.0+
 cargo update -p zip:0.6.6 --precise "0.6.2"
 ```