From f1b053d6c0ad69766059c006565841dd873d8955 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Sep 2023 16:35:14 +0000 Subject: [PATCH] build(deps): bump actix-identity from 0.5.2 to 0.6.0 Bumps [actix-identity](https://github.com/actix/actix-extras) from 0.5.2 to 0.6.0. - [Release notes](https://github.com/actix/actix-extras/releases) - [Commits](https://github.com/actix/actix-extras/compare/cors-v0.5.2...cors-v0.6.0) --- updated-dependencies: - dependency-name: actix-identity dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 27 ++++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 23 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 39818ca..4361a07 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -83,15 +83,15 @@ dependencies = [ [[package]] name = "actix-identity" -version = "0.5.2" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1224c9f9593dc27c9077b233ce04adedc1d7febcfc35ee9f53ea3c24df180bec" +checksum = "36e1cc6f95e245b2f3c6995df4e1c0c697704c48c28ec325d135a3ca039d4952" dependencies = [ "actix-service", - "actix-session", + "actix-session 0.8.0", "actix-utils", "actix-web", - "anyhow", + "derive_more", "futures-core", "serde", "tracing", @@ -175,6 +175,23 @@ dependencies = [ "tracing", ] +[[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-utils" version = "3.0.1" @@ -376,7 +393,7 @@ version = "0.1.0" dependencies = [ "actix-files", "actix-identity", - "actix-session", + "actix-session 0.7.2", "actix-web", "argon2", "cfg-if", diff --git a/Cargo.toml b/Cargo.toml index d379219..ffcb981 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ wasm-bindgen = "=0.2.87" serde = { version = "1.0.183", features = ["derive"] } web-sys = { version = "0.3.64", features = ["HtmlDocument", "Window", "Storage"] } actix-session = { version = "0.7.2", optional = true, features = ["cookie-session"] } -actix-identity = { version = "0.5.2", optional = true } +actix-identity = { version = "0.6.0", optional = true } argon2 = { version = "0.5.2", optional = true } dotenv = "0.15.0" chrono = "0.4.31"