From fba2d4f0b9b2c4ab14ed0bb7fc16eb2f4148fbf4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 23 Jul 2026 18:35:38 +0000 Subject: [PATCH] chore(deps): bump rand in the cargo group across 1 directory Bumps the cargo group with 1 update in the / directory: [rand](https://github.com/rust-random/rand). Updates `rand` from 0.8.5 to 0.9.2 - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.8.5...rand_core-0.9.2) --- updated-dependencies: - dependency-name: rand dependency-version: 0.9.2 dependency-type: direct:production dependency-group: cargo ... Signed-off-by: dependabot[bot] --- Cargo.lock | 24 +++++++++++++++--------- nitrite-fjall-adapter/Cargo.toml | 2 +- nitrite/Cargo.toml | 4 ++-- 3 files changed, 18 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6e2e5d6..ef35652 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1148,6 +1148,12 @@ name = "hashbrown" version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" + +[[package]] +name = "hashbrown" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" dependencies = [ "allocator-api2", "equivalent", @@ -1818,11 +1824,11 @@ dependencies = [ [[package]] name = "lru" -version = "0.16.3" +version = "0.18.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1dc47f592c06f33f8e3aea9591776ec7c9f9e4124778ff8a3c3b87159f7e593" +checksum = "0b6180140927ee907000b0aa540091f6ea512ead4447c92b8fc35bc72788a5a6" dependencies = [ - "hashbrown 0.16.1", + "hashbrown 0.17.1", ] [[package]] @@ -1930,10 +1936,10 @@ dependencies = [ "indexmap", "itertools 0.14.0", "log", - "lru 0.16.3", + "lru 0.18.1", "once_cell", "parking_lot 0.12.5", - "rand 0.8.5", + "rand 0.9.2", "regex", "secure-string", "serde", @@ -1989,7 +1995,7 @@ dependencies = [ "dashmap", "fjall", "log", - "lru 0.16.3", + "lru 0.18.1", "nitrite", "parking_lot 0.12.5", "thiserror", @@ -2419,9 +2425,9 @@ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" [[package]] name = "rand" -version = "0.8.5" +version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a" dependencies = [ "libc", "rand_chacha 0.3.1", @@ -2483,7 +2489,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31" dependencies = [ "num-traits", - "rand 0.8.5", + "rand 0.8.7", ] [[package]] diff --git a/nitrite-fjall-adapter/Cargo.toml b/nitrite-fjall-adapter/Cargo.toml index 1cd5fe0..ab4c755 100644 --- a/nitrite-fjall-adapter/Cargo.toml +++ b/nitrite-fjall-adapter/Cargo.toml @@ -17,7 +17,7 @@ log = "0.4.14" cargo_toml = "0.22.1" dashmap = "6.1.0" crossbeam = "0.8.4" -lru = "0.16.3" +lru = "0.18.1" parking_lot = "0.12.4" thiserror = "2.0" diff --git a/nitrite/Cargo.toml b/nitrite/Cargo.toml index 952697e..487f227 100644 --- a/nitrite/Cargo.toml +++ b/nitrite/Cargo.toml @@ -11,7 +11,7 @@ categories = ["database", "data-structures"] [dependencies] uuid = { version = "1.10.0", features = ["v4"] } -rand = { version = "=0.8.5" } # due to error Trait `CryptoRng` is not implemented for `OsRng` +rand = { version = "=0.9.2" } # due to error Trait `CryptoRng` is not implemented for `OsRng` log = "0.4.22" parking_lot = { workspace = true } basu = { version = "0.1.5", default-features = false, features = ["sync"] } @@ -30,7 +30,7 @@ itertools = "0.14.0" backtrace = "0.3.75" once_cell = "1.20.2" smallvec = "1.15.1" -lru = "0.16.3" +lru = "0.18.1" im = { version = "15.1.0", features = ["serde"] } indexmap = "2.2.6"