From 1a3b420bcbbd346555a38a6b134e13df3e22593a Mon Sep 17 00:00:00 2001 From: Luis Schwab Date: Wed, 12 Mar 2025 14:42:01 -0300 Subject: [PATCH] ci: pin `base64ct` to `1.6.0` --- .github/workflows/cont_integration.yml | 1 + ci/pin-msrv.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 0267c80b..8eddf6ae 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -50,6 +50,7 @@ jobs: cargo update -p home --precise "0.5.9" cargo update -p native-tls --precise "0.2.13" cargo update -p idna_adapter --precise "1.1.0" + cargo update -p base64ct --precise "1.6.0" - name: Pin dependencies for MSRV if: matrix.rust.version == '1.63.0' run: ./ci/pin-msrv.sh diff --git a/ci/pin-msrv.sh b/ci/pin-msrv.sh index bd8fedad..77d2ba1f 100755 --- a/ci/pin-msrv.sh +++ b/ci/pin-msrv.sh @@ -26,3 +26,4 @@ cargo update -p flate2 --precise "1.0.35" cargo update -p bzip2-sys --precise "0.1.12" cargo update -p ring --precise "0.17.12" cargo update -p once_cell --precise "1.20.3" +cargo update -p base64ct --precise "1.6.0" -- 2.49.0