1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 15:51:06 +01:00

workaround msrv issues fix

This commit is contained in:
Rob Ede 2023-01-07 01:57:03 +00:00
parent 9be4f1ff73
commit 708aa945dc
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933

View File

@ -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