From 45c4d441e3c65e0a4fa140231942597bb00a84e1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 6 Aug 2024 13:54:51 +0000 Subject: [PATCH 1/2] build(deps): update reqwest requirement from 0.11 to 0.12 Updates the requirements on [reqwest](https://github.com/seanmonstar/reqwest) to permit the latest version. - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.0...v0.12.5) --- updated-dependencies: - dependency-name: reqwest dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- actix-identity/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-identity/Cargo.toml b/actix-identity/Cargo.toml index 46858c233..036685df9 100644 --- a/actix-identity/Cargo.toml +++ b/actix-identity/Cargo.toml @@ -34,7 +34,7 @@ actix-web = { version = "4", default-features = false, features = ["macros", "co actix-session = { version = "0.9", features = ["redis-session", "cookie-session"] } env_logger = "0.11" -reqwest = { version = "0.11", default-features = false, features = ["cookies", "json"] } +reqwest = { version = "0.12", default-features = false, features = ["cookies", "json"] } uuid = { version = "1", features = ["v4"] } [lints] From e769e399002339f4424138783f0baf8d17fce520 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Tue, 6 Aug 2024 15:05:29 +0100 Subject: [PATCH 2/2] chore: use reqwest::StatusCode --- actix-identity/tests/integration/integration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-identity/tests/integration/integration.rs b/actix-identity/tests/integration/integration.rs index 1246545e8..df030b1f5 100644 --- a/actix-identity/tests/integration/integration.rs +++ b/actix-identity/tests/integration/integration.rs @@ -1,7 +1,7 @@ use std::time::Duration; use actix_identity::{config::LogoutBehaviour, IdentityMiddleware}; -use actix_web::http::StatusCode; +use reqwest::StatusCode; use crate::{fixtures::user_id, test_app::TestApp};