From 8d5d881255996362d78c4dd7e40182dc9d532625 Mon Sep 17 00:00:00 2001 From: Daniela Brozzoni Date: Wed, 9 Aug 2023 16:30:40 +0200 Subject: [PATCH] ci: Pin even more dependencies for MSRV - Specify which version of zip needs to be updated - Add rustls --- .github/workflows/cont_integration.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index e5b9e2906d..034a65abf1 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -66,11 +66,11 @@ jobs: cargo update -p tempfile --precise "3.6.0" cargo update -p hashlink --precise "0.8.1" cargo update -p regex --precise "1.7.3" - cargo update -p zip --precise "0.6.3" - cargo update -p base64ct --precise "1.5.3" + cargo update -p zip:0.6.6 --precise "0.6.3" cargo update -p rustix --precise "0.37.23" cargo update -p tokio --precise "1.29.1" cargo update -p cc --precise "1.0.81" + cargo update -p rustls:0.21.6 --precise "0.21.1" - name: Build run: cargo build --features ${{ matrix.features }} --no-default-features - name: Clippy @@ -226,10 +226,10 @@ jobs: cargo update -p tempfile --precise "3.6.0" cargo update -p hashlink --precise "0.8.1" cargo update -p regex --precise "1.7.3" - cargo update -p zip --precise "0.6.3" - cargo update -p base64ct --precise "1.5.3" + cargo update -p zip:0.6.6 --precise "0.6.3" cargo update -p rustix --precise "0.37.23" cargo update -p tokio --precise "1.29.1" cargo update -p cc --precise "1.0.81" + cargo update -p rustls:0.21.6 --precise "0.21.1" - name: Test run: cargo test --features test-hardware-signer