From def824c618c7e0002c43812a7b6f62acbf9f62d7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 14:26:33 +0000 Subject: [PATCH] build(deps): bump actix-identity from 0.6.0 to 0.7.0 Bumps [actix-identity](https://github.com/actix/actix-extras) from 0.6.0 to 0.7.0. - [Release notes](https://github.com/actix/actix-extras/releases) - [Commits](https://github.com/actix/actix-extras/compare/cors-v0.6.0...cors-v0.7.0) --- updated-dependencies: - dependency-name: actix-identity dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 25 ++++--------------------- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8f6dd75..6f76a0e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -83,12 +83,12 @@ dependencies = [ [[package]] name = "actix-identity" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36e1cc6f95e245b2f3c6995df4e1c0c697704c48c28ec325d135a3ca039d4952" +checksum = "1478456bca71c7b04411da1afb0c506e16dec6863815207693b791247511027f" dependencies = [ "actix-service", - "actix-session 0.8.0", + "actix-session", "actix-utils", "actix-web", "derive_more", @@ -158,23 +158,6 @@ dependencies = [ "pin-project-lite", ] -[[package]] -name = "actix-session" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e6a28f813a6671e1847d005cad0be36ae4d016287690f765c303379837c13d6" -dependencies = [ - "actix-service", - "actix-utils", - "actix-web", - "anyhow", - "async-trait", - "derive_more", - "serde", - "serde_json", - "tracing", -] - [[package]] name = "actix-session" version = "0.9.0" @@ -399,7 +382,7 @@ version = "0.1.0" dependencies = [ "actix-files", "actix-identity", - "actix-session 0.9.0", + "actix-session", "actix-web", "argon2", "cfg-if", diff --git a/Cargo.toml b/Cargo.toml index 7058a2a..1c99856 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ wasm-bindgen = "=0.2.90" serde = { version = "1.0.195", features = ["derive"] } web-sys = { version = "0.3.67", features = ["HtmlDocument", "Window", "Storage"] } actix-session = { version = "0.9.0", optional = true, features = ["cookie-session"] } -actix-identity = { version = "0.6.0", optional = true } +actix-identity = { version = "0.7.0", optional = true } argon2 = { version = "0.5.2", optional = true } dotenv = "0.15.0" chrono = "0.4.31"