diff --git a/central_backend/Cargo.lock b/central_backend/Cargo.lock index a784a23..9ea9367 100644 --- a/central_backend/Cargo.lock +++ b/central_backend/Cargo.lock @@ -106,7 +106,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "23b8ddc6f6a8b19c4016aaa13519968da9969bc3bc1c1c883cdb0f25dd6c8cf7" dependencies = [ "actix-service", - "actix-session", + "actix-session 0.10.1", "actix-utils", "actix-web", "derive_more 1.0.0", @@ -243,6 +243,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.2", + "serde", + "serde_json", + "tracing", +] + [[package]] name = "actix-tls" version = "3.4.0" @@ -669,7 +686,7 @@ dependencies = [ "actix-identity", "actix-multipart", "actix-remote-ip", - "actix-session", + "actix-session 0.11.0", "actix-web", "anyhow", "asn1", @@ -2412,9 +2429,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[package]] name = "reqwest" -version = "0.12.23" +version = "0.12.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb" +checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f" dependencies = [ "base64 0.22.1", "bytes", diff --git a/central_backend/Cargo.toml b/central_backend/Cargo.toml index ed97c6c..a75df40 100644 --- a/central_backend/Cargo.toml +++ b/central_backend/Cargo.toml @@ -19,7 +19,7 @@ asn1 = "0.22.0" actix-web = { version = "4.11.0", features = ["openssl"] } futures = "0.3.31" serde = { version = "1.0.228", features = ["derive"] } -reqwest = { version = "0.12.23", features = ["json"] } +reqwest = { version = "0.12.24", features = ["json"] } serde_json = "1.0.145" rand = "0.9.2" actix = "0.13.5"