]> Untitled Git - bdk/commitdiff
ci: fix msrv dependency versions for reqest and h2
authorDaniela Brozzoni <danielabrozzoni@protonmail.com>
Tue, 22 Aug 2023 14:49:47 +0000 (16:49 +0200)
committerDaniela Brozzoni <danielabrozzoni@protonmail.com>
Tue, 22 Aug 2023 15:11:36 +0000 (17:11 +0200)
- 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
- rustls-webpki has MSRV 1.60.0+, pin to 0.100.1

.github/workflows/cont_integration.yml
README.md

index 27901655b5f7c6f8b3b08caa64e5f2b7e950f7b2..e9fa9c3e24b0fc2873645847af6ad0d0b5298832 100644 (file)
@@ -72,6 +72,9 @@ jobs:
           cargo update -p cc --precise "1.0.81"
           cargo update -p rustls:0.21.6 --precise "0.21.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"
+          cargo update -p rustls-webpki --precise "0.100.1"
       - name: Build
         run: cargo build --features ${{ matrix.features }} --no-default-features
       - name: Clippy
@@ -233,5 +236,8 @@ jobs:
         cargo update -p cc --precise "1.0.81"
         cargo update -p rustls:0.21.6 --precise "0.21.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"
+        cargo update -p rustls-webpki --precise "0.100.1"
     - name: Test
       run: cargo test --features test-hardware-signer
index 7eea1570aee7c6461c3b572ae4dbe3654f7974bc..fea3af0fdac08ef0d29067d973e02914d1089ade 100644 (file)
--- a/README.md
+++ b/README.md
@@ -229,4 +229,10 @@ cargo update -p cc --precise "1.0.81"
 cargo update -p rustls:0.21.6 --precise "0.21.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"
+# rustls-webpki 0.100.2 has MSRV 1.60+
+cargo update -p rustls-webpki --precise "0.100.2"
 ```