From 5ba4d68e45e3f5503b80c73da2d413794e10b017 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=E5=BF=97=E5=AE=87?= Date: Fri, 21 Feb 2025 00:19:51 +1100 Subject: [PATCH] ci: Pin `native-tls` to `0.2.13` To satisfy MSRV of 1.75.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 f13bca2f..2f4ef8bf 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -48,6 +48,7 @@ jobs: if: matrix.rust.version == '1.75.0' run: | cargo update -p home --precise "0.5.9" + cargo update -p native-tls --precise "0.2.13" - 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 83df738a..3e3fc0e5 100755 --- a/ci/pin-msrv.sh +++ b/ci/pin-msrv.sh @@ -21,3 +21,4 @@ cargo update -p indexmap --precise "2.5.0" cargo update -p security-framework-sys --precise "2.11.1" cargo update -p csv --precise "1.3.0" cargo update -p unicode-width --precise "0.1.13" +cargo update -p native-tls --precise "0.2.13" -- 2.49.0