From b7be55fb4b34ec2b14f00022bf72c5ab99dccf93 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Jan 2024 20:06:28 +0100 Subject: [PATCH] Upgrade `actix-cors` crate from 0.6 to 0.7 version (#1234) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kai Ren --- .github/workflows/ci.yml | 4 ++++ juniper_actix/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 27e87999..a3a58108 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -173,6 +173,10 @@ jobs: - run: cargo +nightly update -Z minimal-versions - run: make test.cargo crate=${{ matrix.crate }} + if: ${{ matrix.crate != 'juniper_actix' }} + # TODO: Remove once MSRV bumps up >=1.75. + - run: cargo check -p ${{ matrix.crate }} --all-features + if: ${{ matrix.crate == 'juniper_actix' }} package: if: ${{ startsWith(github.ref, 'refs/tags/juniper') }} diff --git a/juniper_actix/Cargo.toml b/juniper_actix/Cargo.toml index 2f9b53b2..be3fd2e2 100644 --- a/juniper_actix/Cargo.toml +++ b/juniper_actix/Cargo.toml @@ -36,7 +36,7 @@ serde = { version = "1.0.122", features = ["derive"] } serde_json = "1.0.18" [dev-dependencies] -actix-cors = "0.6" +actix-cors = "0.7" actix-identity = "0.6" actix-rt = "2.0" actix-test = "0.1"