Skip to content

Commit

Permalink
build(deps): update reqwest requirement from 0.11 to 0.12 (#454)
Browse files Browse the repository at this point in the history
* 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](seanmonstar/reqwest@v0.11.0...v0.12.5)

---
updated-dependencies:
- dependency-name: reqwest
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* chore: use reqwest::StatusCode

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Rob Ede <[email protected]>
  • Loading branch information
dependabot[bot] and robjtede authored Aug 6, 2024
1 parent 504e894 commit 517e72f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion actix-identity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion actix-identity/tests/integration/integration.rs
Original file line number Diff line number Diff line change
@@ -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};

Expand Down

0 comments on commit 517e72f

Please sign in to comment.