From 78a8b8732b7787df064cfea9ad2d822ff74957d0 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Sun, 20 Oct 2024 00:16:22 +0000 Subject: [PATCH] Update Rust crate actix-session to 0.10.0 --- Cargo.lock | 20 ++------------------ Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7a04551..eb0a2fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -90,7 +90,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "23b8ddc6f6a8b19c4016aaa13519968da9969bc3bc1c1c883cdb0f25dd6c8cf7" dependencies = [ "actix-service", - "actix-session 0.10.1", + "actix-session", "actix-utils", "actix-web", "derive_more 1.0.0", @@ -173,22 +173,6 @@ dependencies = [ "pin-project-lite", ] -[[package]] -name = "actix-session" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b671404ec72194d8af58c2bdaf51e3c477a0595056bd5010148405870dda8df2" -dependencies = [ - "actix-service", - "actix-utils", - "actix-web", - "anyhow", - "derive_more 0.99.18", - "serde", - "serde_json", - "tracing", -] - [[package]] name = "actix-session" version = "0.10.1" @@ -643,7 +627,7 @@ dependencies = [ "actix", "actix-identity", "actix-remote-ip", - "actix-session 0.9.0", + "actix-session", "actix-web", "askama", "base32", diff --git a/Cargo.toml b/Cargo.toml index a28c31c..436843c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" actix = "0.13.3" actix-identity = "0.8.0" 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.17", features = ["derive", "env"] } include_dir = "0.7.3"