diff --git a/Cargo.lock b/Cargo.lock index 94da19d..0352d01 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 0.9.0", + "actix-session", "actix-utils", "actix-web", "derive_more", @@ -189,22 +189,6 @@ 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" @@ -642,7 +626,7 @@ dependencies = [ "actix", "actix-identity", "actix-remote-ip", - "actix-session 0.10.0", + "actix-session", "actix-web", "askama", "base32", diff --git a/Cargo.toml b/Cargo.toml index 710223a..275a901 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.10.0", features = ["cookie-session"] } +actix-session = { version = "0.9.0", features = ["cookie-session"] } actix-remote-ip = "0.1.0" clap = { version = "4.5.17", features = ["derive", "env"] } include_dir = "0.7.3"