From: Steve Myers Date: Mon, 4 Sep 2023 06:01:04 +0000 (-0500) Subject: ci: fix msrv dependency versions for rustls-webpki and zip X-Git-Tag: v1.0.0-alpha.2~11^2~2 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/database/scripts/bitcoin/struct.Target.html?a=commitdiff_plain;h=31d52e12c93469dc6af9a88eba42ad87315dd63b;p=bdk ci: fix msrv dependency versions for rustls-webpki and zip --- diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 63b9a0b7..08243579 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -38,7 +38,9 @@ jobs: 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" + 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 zip:0.6.6 --precise "0.6.2" - name: Build run: cargo build ${{ matrix.features }} - name: Test diff --git a/README.md b/README.md index b54a89d0..3969c8ed 100644 --- a/README.md +++ b/README.md @@ -81,8 +81,12 @@ cargo update -p flate2:1.0.27 --precise "1.0.26" 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 has MSRV 1.60.0+ -cargo update -p rustls-webpki --precise "0.100.1" +# 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" +# zip 0.6.3 has MSRV 1.59.0+ +cargo update -p zip:0.6.6 --precise "0.6.2" ``` ## License