From cd5817779c3afa4ef1e79e585100f288c710f2bf Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 5 Jul 2026 09:47:12 +0000 Subject: [PATCH] fix(deps): update rust crate rand to v0.10.2 (#1298) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 577ea47..bf84851 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1841,9 +1841,9 @@ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" [[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/Cargo.toml b/Cargo.toml index bbe3f23..b43ed69 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ log = { version = "=0.4.33", features = [ maxminddb = { version = "=0.29.0", features = ["mmap"] } mimalloc = { version = "=0.1.52", features = ["override"], optional = true } parking_lot = "=0.12.5" -rand = { version = "=0.10.1", default-features = false, features = [ +rand = { version = "=0.10.2", default-features = false, features = [ "std", "thread_rng", ] }