Merge branch 'master' into acceptable-guard

This commit is contained in:
Rob Ede 2022-11-25 17:46:13 +00:00 committed by GitHub
commit 9683305307
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -59,7 +59,6 @@ jobs:
cargo install cargo-edit --version=0.8.0
cargo add const-str@0.3 --dev -p=actix-web
cargo add const-str@0.3 --dev -p=awc
cargo update -p=zstd-sys --precise=2.0.1+zstd.1.5.2
- name: Generate Cargo.lock
uses: actions-rs/cargo@v1
@ -67,6 +66,11 @@ jobs:
- name: Cache Dependencies
uses: Swatinem/rust-cache@v1.2.0
- name: workaround MSRV issues
if: matrix.version != 'stable'
run: |
cargo update -p=zstd-sys --precise=2.0.1+zstd.1.5.2
- name: check minimal
uses: actions-rs/cargo@v1
with: { command: ci-check-min }