diff --git a/remote_backend/Cargo.lock b/remote_backend/Cargo.lock index cc535c8..79f2863 100644 --- a/remote_backend/Cargo.lock +++ b/remote_backend/Cargo.lock @@ -75,15 +75,15 @@ dependencies = [ [[package]] name = "actix-identity" -version = "0.8.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23b8ddc6f6a8b19c4016aaa13519968da9969bc3bc1c1c883cdb0f25dd6c8cf7" +checksum = "810f47733f956175bd5b2ae17ae5237fa92bd1b6a4a65f646a7240dbe9ff2728" dependencies = [ "actix-service", - "actix-session", + "actix-session 0.11.0", "actix-utils", "actix-web", - "derive_more 1.0.0", + "derive_more 2.0.1", "futures-core", "serde", "tracing", @@ -179,6 +179,23 @@ dependencies = [ "tracing", ] +[[package]] +name = "actix-session" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "400c27fd4cdbe0082b7bbd29ac44a3070cbda1b2114138dc106ba39fe2f90dff" +dependencies = [ + "actix-service", + "actix-utils", + "actix-web", + "anyhow", + "derive_more 2.0.1", + "rand 0.9.0", + "serde", + "serde_json", + "tracing", +] + [[package]] name = "actix-utils" version = "3.0.1" @@ -2014,7 +2031,7 @@ dependencies = [ "actix-cors", "actix-identity", "actix-remote-ip", - "actix-session", + "actix-session 0.10.1", "actix-web", "anyhow", "basic-jwt", diff --git a/remote_backend/Cargo.toml b/remote_backend/Cargo.toml index b05e855..7d08f72 100644 --- a/remote_backend/Cargo.toml +++ b/remote_backend/Cargo.toml @@ -15,7 +15,7 @@ basic-jwt = "0.3.0" actix-web = "4.11.0" actix-remote-ip = "0.1.0" actix-session = { version = "0.10.1", features = ["cookie-session"] } -actix-identity = "0.8.0" +actix-identity = "0.9.0" actix-cors = "0.7.1" lazy_static = "1.5.0" anyhow = "1.0.99"