From 9be4f1ff73ced3ea4cb6a5e6a505d40717dbd93f Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sat, 7 Jan 2023 01:38:07 +0000 Subject: [PATCH] workaround dev dep msrv issues --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ed53e46a8..92a0ac80c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -95,6 +95,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