diff --git a/remote_backend/Cargo.lock b/remote_backend/Cargo.lock index 273adaf..e9dbe8e 100644 --- a/remote_backend/Cargo.lock +++ b/remote_backend/Cargo.lock @@ -27,7 +27,7 @@ checksum = "daa239b93927be1ff123eebada5a3ff23e89f0124ccb8609234e5103d5a5ae6d" dependencies = [ "actix-utils", "actix-web", - "derive_more 2.0.1", + "derive_more", "futures-util", "log", "once_cell", @@ -49,7 +49,7 @@ dependencies = [ "brotli", "bytes", "bytestring", - "derive_more 2.0.1", + "derive_more", "encoding_rs", "flate2", "foldhash", @@ -80,10 +80,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "810f47733f956175bd5b2ae17ae5237fa92bd1b6a4a65f646a7240dbe9ff2728" dependencies = [ "actix-service", - "actix-session 0.11.0", + "actix-session", "actix-utils", "actix-web", - "derive_more 2.0.1", + "derive_more", "futures-core", "serde", "tracing", @@ -162,23 +162,6 @@ dependencies = [ "pin-project-lite", ] -[[package]] -name = "actix-session" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "efe6976a74f34f1b6d07a6c05aadc0ed0359304a7781c367fa5b4029418db08f" -dependencies = [ - "actix-service", - "actix-utils", - "actix-web", - "anyhow", - "derive_more 1.0.0", - "rand 0.8.5", - "serde", - "serde_json", - "tracing", -] - [[package]] name = "actix-session" version = "0.11.0" @@ -189,7 +172,7 @@ dependencies = [ "actix-utils", "actix-web", "anyhow", - "derive_more 2.0.1", + "derive_more", "rand 0.9.0", "serde", "serde_json", @@ -225,7 +208,7 @@ dependencies = [ "bytestring", "cfg-if", "cookie", - "derive_more 2.0.1", + "derive_more", "encoding_rs", "foldhash", "futures-core", @@ -716,34 +699,13 @@ dependencies = [ "powerfmt", ] -[[package]] -name = "derive_more" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" -dependencies = [ - "derive_more-impl 1.0.0", -] - [[package]] name = "derive_more" version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678" dependencies = [ - "derive_more-impl 2.0.1", -] - -[[package]] -name = "derive_more-impl" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" -dependencies = [ - "proc-macro2", - "quote", - "syn", - "unicode-xid", + "derive_more-impl", ] [[package]] @@ -2031,7 +1993,7 @@ dependencies = [ "actix-cors", "actix-identity", "actix-remote-ip", - "actix-session 0.10.1", + "actix-session", "actix-web", "anyhow", "basic-jwt", diff --git a/remote_backend/Cargo.toml b/remote_backend/Cargo.toml index 42e428a..0239b4a 100644 --- a/remote_backend/Cargo.toml +++ b/remote_backend/Cargo.toml @@ -14,7 +14,7 @@ light-openid = { version = "1.0.4", features = ["crypto-wrapper"] } 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-session = { version = "0.11.0", features = ["cookie-session"] } actix-identity = "0.9.0" actix-cors = "0.7.1" lazy_static = "1.5.0"