From 5c36dae1da262cef0285ffdba8d026355cd39552 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 2 Jul 2026 11:34:26 +0000 Subject: [PATCH] chore(deps): update rust crate rand to v0.10.2 --- Cargo.lock | 6 +++--- crates/server/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ec769a9..ed13616 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3531,7 +3531,7 @@ dependencies = [ "log", "objc2-core-foundation", "once_cell", - "rand 0.10.1", + "rand 0.10.2", "rcgen", "regex", "reqwest 0.13.4", @@ -5131,9 +5131,9 @@ dependencies = [ [[package]] name = "rand" -version = "0.10.1" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207" +checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80" dependencies = [ "chacha20", "getrandom 0.4.3", diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index fe73206..def943f 100644 --- a/crates/server/Cargo.toml +++ b/crates/server/Cargo.toml @@ -75,7 +75,7 @@ keyring-core = { version = "=1.0.0", features = ["sample"] } libsqlite3-sys = { version = "=0.37.0", features = ["bundled"] } # this is needed for proper linking log = "=0.4.33" once_cell = "=1.21.4" -rand = "=0.10.1" +rand = "=0.10.2" rcgen = "=0.14.8" regex = "=1.12.4" reqwest = { version = "=0.13.4", default-features = false, features = ["json", "query", "rustls"] }