From 30ff72f4090a7a638f2aeeba8335e7b133b2c458 Mon Sep 17 00:00:00 2001 From: Pierre Hubert Date: Tue, 17 Oct 2023 00:04:14 +0000 Subject: [PATCH] Update Rust crate actix-session to 0.8.0 --- Cargo.lock | 21 ++------------------- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 20 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6d61cab..1cef532 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -90,7 +90,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "36e1cc6f95e245b2f3c6995df4e1c0c697704c48c28ec325d135a3ca039d4952" dependencies = [ "actix-service", - "actix-session 0.8.0", + "actix-session", "actix-utils", "actix-web", "derive_more", @@ -172,23 +172,6 @@ dependencies = [ "pin-project-lite", ] -[[package]] -name = "actix-session" -version = "0.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43da8b818ae1f11049a4d218975345fe8e56ce5a5f92c11f972abcff5ff80e87" -dependencies = [ - "actix-service", - "actix-utils", - "actix-web", - "anyhow", - "async-trait", - "derive_more", - "serde", - "serde_json", - "tracing", -] - [[package]] name = "actix-session" version = "0.8.0" @@ -582,7 +565,7 @@ dependencies = [ "actix", "actix-identity", "actix-remote-ip", - "actix-session 0.7.2", + "actix-session", "actix-web", "askama", "base32", diff --git a/Cargo.toml b/Cargo.toml index 4e72b26..5d66f0a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" actix = "0.13.1" actix-identity = "0.6.0" actix-web = "4" -actix-session = { version = "0.7.2", features = ["cookie-session"] } +actix-session = { version = "0.8.0", features = ["cookie-session"] } actix-remote-ip = "0.1.0" clap = { version = "4.4.6", features = ["derive", "env"] } include_dir = "0.7.3"