From 2251b8d41661deb5d8ef7b98abef55efe6437180 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Wed, 20 Dec 2023 11:19:48 -0600 Subject: [PATCH 1/2] ci: pin home version to 0.5.5 for 1.63 MSRV --- .github/workflows/cont_integration.yml | 2 +- README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 1892242ad..14310093a 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -33,7 +33,7 @@ jobs: cargo update -p zip --precise "0.6.2" cargo update -p time --precise "0.3.20" cargo update -p jobserver --precise "0.1.26" - cargo update -p reqwest --precise "0.11.19" + cargo update -p home --precise "0.5.5" - name: Build run: cargo build ${{ matrix.features }} - name: Test diff --git a/README.md b/README.md index 087c4e68c..8ecd764e2 100644 --- a/README.md +++ b/README.md @@ -65,14 +65,14 @@ This library should compile with any combination of features with Rust 1.63.0. To build with the MSRV you will need to pin dependencies as follows: ```shell -# zip 0.6.3 has MSRV 1.64.0+ +# zip 0.6.3 has MSRV 1.64.0 cargo update -p zip --precise "0.6.2" -# time 0.3.21 has MSRV 1.65.0+ +# time 0.3.21 has MSRV 1.65.0 cargo update -p time --precise "0.3.20" # jobserver 0.1.27 has MSRV 1.66.0 cargo update -p jobserver --precise "0.1.26" -# reqwest 0.11.20 has MSRV > 1.63.0+ -cargo update -p reqwest --precise "0.11.19" +# home 0.5.9 has MSRV 1.70.0 +cargo update -p home --precise "0.5.5" ``` ## License From e7fbc8bcf36de110e88095dba8be0c62e2c8e0ef Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Wed, 20 Dec 2023 11:23:34 -0600 Subject: [PATCH 2/2] ci: run clippy_check with rust stable --- .github/workflows/cont_integration.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 14310093a..6281c465c 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -118,9 +118,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions-rs/toolchain@v1 with: - # we pin clippy instead of using "stable" so that our CI doesn't break - # at each new cargo release - toolchain: "1.67.0" + toolchain: "stable" components: clippy override: true - name: Rust Cache