From c095322249f85d36d46c2a8d4808f3e1c70ddb08 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Wed, 13 Nov 2024 15:57:47 -0800 Subject: [PATCH] ci: downgrade hashbrown for 1.63 --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 98c77507..efcb2066 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,6 +48,11 @@ jobs: - uses: dtolnay/rust-toolchain@master with: toolchain: ${{ matrix.rust }} + - name: Downgrade dependencies + if: matrix.rust == '1.63.0' + run: | + cargo generate-lockfile + cargo update -p hashbrown --precise 0.15.0 - name: Tests run: | cargo build --verbose --features "${{ matrix.features }}" @@ -83,6 +88,11 @@ jobs: with: toolchain: ${{ matrix.rust }} target: ${{ matrix.target }} + - name: Downgrade dependencies + if: matrix.rust == '1.63.0' + run: | + cargo generate-lockfile + cargo update -p hashbrown --precise 0.15.0 - name: Tests run: | cargo build -vv --target=${{ matrix.target }} --no-default-features