From: Daniela Brozzoni Date: Mon, 9 Oct 2023 13:58:11 +0000 (+0200) Subject: ci: Pin byteorder, webpki to keep the MSRV X-Git-Tag: v0.30.0~9^2 X-Git-Url: http://internal-gitweb-vhost/?a=commitdiff_plain;h=67b083fa03f116effe787fd7c1ba17c739d963ce;p=bdk ci: Pin byteorder, webpki to keep the MSRV --- diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 2ceaac49..bc2c8844 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -78,6 +78,8 @@ jobs: 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.6 --precise "0.101.1" + cargo update -p byteorder --precise "1.4.3" + cargo update -p webpki --precise "0.22.2" - name: Build run: cargo build --features ${{ matrix.features }} --no-default-features - name: Clippy @@ -245,5 +247,7 @@ jobs: 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.6 --precise "0.101.1" + cargo update -p byteorder --precise "1.4.3" + cargo update -p webpki --precise "0.22.2" - name: Test run: cargo test --features test-hardware-signer diff --git a/README.md b/README.md index a5d476c8..42eee279 100644 --- a/README.md +++ b/README.md @@ -241,4 +241,8 @@ cargo update -p h2 --precise "0.3.20" cargo update -p rustls-webpki:0.100.3 --precise "0.100.1" # rustls-webpki 0.101.6 has MSRV 1.60+ cargo update -p rustls-webpki:0.101.6 --precise "0.101.1" +# byteorder 1.5.0 has MSRV 1.60.0+ +cargo update -p byteorder --precise "1.4.3" +# webpki 0.22.4 requires `ring:0.17.2` which has MSRV 1.61.0+ +cargo update -p webpki --precise "0.22.2" ```