From cf801020d756071c171be2be223333409abd5b4f Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 27 Oct 2025 00:42:29 +0000 Subject: [PATCH] Update Rust crate asn1 to 0.23.0 --- central_backend/Cargo.lock | 29 +++++++++++++++++++++++------ central_backend/Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 7 deletions(-) diff --git a/central_backend/Cargo.lock b/central_backend/Cargo.lock index a784a23..0990205 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" @@ -489,9 +506,9 @@ dependencies = [ [[package]] name = "asn1" -version = "0.22.0" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df42c2b01c5e1060b8281f67b4e5fb858260694916a667345a7305cd11e5dbfa" +checksum = "bcb25db9258497df3a24e939c160b4fa3477d0a4f22402a73e610a4c056786fe" dependencies = [ "asn1_derive", "itoa", @@ -499,9 +516,9 @@ dependencies = [ [[package]] name = "asn1_derive" -version = "0.22.0" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdccf849b54365e3693e9a90ad36e4482b79937e6373ac8e2cf229c985187b21" +checksum = "1663403ad39c8f68bba1d051181a53f12344b08c4f7af0f382baca8fdbd5c9bf" dependencies = [ "proc-macro2", "quote", @@ -669,7 +686,7 @@ dependencies = [ "actix-identity", "actix-multipart", "actix-remote-ip", - "actix-session", + "actix-session 0.11.0", "actix-web", "anyhow", "asn1", diff --git a/central_backend/Cargo.toml b/central_backend/Cargo.toml index ed97c6c..922c521 100644 --- a/central_backend/Cargo.toml +++ b/central_backend/Cargo.toml @@ -15,7 +15,7 @@ openssl = { version = "0.10.74" } openssl-sys = "0.9.110" libc = "0.2.177" foreign-types-shared = "0.1.1" -asn1 = "0.22.0" +asn1 = "0.23.0" actix-web = { version = "4.11.0", features = ["openssl"] } futures = "0.3.31" serde = { version = "1.0.228", features = ["derive"] }