From 708aa945dce4539de0113da4db8acdff018fbc0a Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sat, 7 Jan 2023 01:57:03 +0000 Subject: [PATCH] workaround msrv issues fix --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 92a0ac80c..fb33a2e90 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,6 +43,16 @@ jobs: - name: Install cargo-hack uses: taiki-e/install-action@cargo-hack + - name: workaround MSRV issues + if: matrix.version != 'stable' + run: | + cargo install cargo-edit --version=0.8.0 + cargo add env_logger@0.9 --dev -p=actix-cors + cargo add env_logger@0.9 --dev -p=actix-identity + cargo add env_logger@0.9 --dev -p=actix-redis + cargo add env_logger@0.9 --dev -p=actix-session + cargo add env_logger@0.9 --dev -p=actix-settings + - name: Generate Cargo.lock run: cargo generate-lockfile - name: Cache Dependencies