From 7cfe7b458329dcfea120119a2f3c4c243b2d5b60 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Sat, 24 Aug 2024 00:28:13 +0000 Subject: [PATCH] Update Rust crate actix-session to 0.10.0 --- Cargo.lock | 20 ++++++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e340ee9..b052b1f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -90,7 +90,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2c99b7a5614b72a78f04aa2021e5370fc1aef2475fffeffc0c1266b99007062" dependencies = [ "actix-service", - "actix-session", + "actix-session 0.9.0", "actix-utils", "actix-web", "derive_more", @@ -189,6 +189,22 @@ dependencies = [ "tracing", ] +[[package]] +name = "actix-session" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac013ca53d36acb0cc60f5437381c97c291f51a12a5bd8d02febc3a3aaf53390" +dependencies = [ + "actix-service", + "actix-utils", + "actix-web", + "anyhow", + "derive_more", + "serde", + "serde_json", + "tracing", +] + [[package]] name = "actix-utils" version = "3.0.1" @@ -626,7 +642,7 @@ dependencies = [ "actix", "actix-identity", "actix-remote-ip", - "actix-session", + "actix-session 0.10.0", "actix-web", "askama", "base32", diff --git a/Cargo.toml b/Cargo.toml index fcfb7b6..e9cbf81 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" actix = "0.13.3" actix-identity = "0.7.1" actix-web = "4.5.1" -actix-session = { version = "0.9.0", features = ["cookie-session"] } +actix-session = { version = "0.10.0", features = ["cookie-session"] } actix-remote-ip = "0.1.0" clap = { version = "4.5.4", features = ["derive", "env"] } include_dir = "0.7.3"