]> Untitled Git - bdk/commitdiff
ci: fix msrv dependency versions for reqest and h2
authorSteve Myers <steve@notmandatory.org>
Mon, 21 Aug 2023 20:25:57 +0000 (15:25 -0500)
committerSteve Myers <steve@notmandatory.org>
Mon, 21 Aug 2023 20:25:57 +0000 (15:25 -0500)
- reqwest 0.11.19 has MSRV 1.63.0+, pin to 0.11.18
- h2 0.3.21 has MSRV 1.63.0+, pin to 0.3.20

.github/workflows/cont_integration.yml
README.md

index 7f43ac68895a46852189cfe1f1fd983619cb1a92..a55d5cc94c4be29831dea6a357d48636fe41da4e 100644 (file)
@@ -35,6 +35,8 @@ jobs:
           cargo update -p rustls:0.21.6 --precise "0.21.1"
           cargo update -p tokio:1.32.0 --precise "1.29.1"
           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"
       - name: Build
         run: cargo build ${{ matrix.features }}
       - name: Test
index 92161130e5d4ff8705405b7391e7d564023d2549..5cdaa31c25d69fe01c8cbdff1507159e8d8c0c38 100644 (file)
--- a/README.md
+++ b/README.md
@@ -65,4 +65,12 @@ cargo update -p log --precise "0.4.18"
 cargo update -p tempfile --precise "3.6.0"
 # rustls 0.21.2 has MSRV 1.60.0+
 cargo update -p rustls:0.21.6 --precise "0.21.1"
+# tokio 1.30 has MSRV 1.63.0+
+cargo update -p tokio:1.32.0 --precise "1.29.1"
+# 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+
+cargo update -p reqwest --precise "0.11.18"
+# h2 0.3.21 has MSRV 1.63.0+
+cargo update -p h2 --precise "0.3.20"
 ```