From 74666478d5553592c6136e0dec12d11bbd10302e Mon Sep 17 00:00:00 2001 From: Juniper Tyree <50025784+juntyr@users.noreply.github.com> Date: Wed, 13 Nov 2024 12:58:34 +0100 Subject: [PATCH] Downgrade indexmap in CI for 1.64 MSRV (#552) --- .github/workflows/ci.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6fccd029..950a5f0c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -32,6 +32,9 @@ jobs: override: true - run: cargo test - run: cargo test --features integer128 + # Downgrade the indexmap dependency for MSRV 1.64 + - run: cargo update -p indexmap --precise 2.5.0 + if: ${{ matrix.rust == '1.64.0' }} - run: cargo test --features indexmap - run: cargo test --all-features @@ -52,6 +55,8 @@ jobs: override: true - run: cargo clippy -- -D warnings - run: cargo clippy --features integer128 -- -D warnings + # Downgrade the indexmap dependency for MSRV 1.64 + - run: cargo update -p indexmap --precise 2.5.0 - run: cargo clippy --features indexmap -- -D warnings - run: cargo clippy --all-features -- -D warnings