From f80752a393f7f46a40ab2c968c143ce5c7125935 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 9 Aug 2026 22:53:26 +0000 Subject: [PATCH] chore(deps): bump rand from 0.8.5 to 0.8.7 Bumps [rand](https://github.com/rust-random/rand) from 0.8.5 to 0.8.7. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/0.8.7/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.8.5...0.8.7) --- updated-dependencies: - dependency-name: rand dependency-version: 0.8.7 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 ++++++++-------- nitrite-int-test/Cargo.toml | 2 +- nitrite/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 25451e8..1224072 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1922,7 +1922,7 @@ dependencies = [ "lru 0.16.3", "once_cell", "parking_lot 0.12.5", - "rand 0.8.5", + "rand 0.8.7", "regex", "secure-string", "serde", @@ -1946,7 +1946,7 @@ dependencies = [ "nitrite_spatial", "nitrite_tantivy_fts", "num_cpus", - "rand 0.8.5", + "rand 0.8.7", "redb", "rusqlite", "serde", @@ -2001,7 +2001,7 @@ dependencies = [ "nitrite_fjall_adapter", "nitrite_spatial", "nitrite_tantivy_fts", - "rand 0.9.2", + "rand 0.8.7", "uuid", ] @@ -2017,7 +2017,7 @@ dependencies = [ "memmap2", "nitrite", "parking_lot 0.12.5", - "rand 0.8.5", + "rand 0.8.7", "rstar", "serde", "serde_json", @@ -2054,7 +2054,7 @@ dependencies = [ "nitrite", "nitrite_fjall_adapter", "parking_lot 0.12.5", - "rand 0.8.5", + "rand 0.8.7", "rustc-hash", "serde", "tempfile", @@ -2408,9 +2408,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", @@ -2472,7 +2472,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-int-test/Cargo.toml b/nitrite-int-test/Cargo.toml index 0106d0f..f96142a 100644 --- a/nitrite-int-test/Cargo.toml +++ b/nitrite-int-test/Cargo.toml @@ -16,7 +16,7 @@ colog = "1.3.0" ctor = "0.6" chrono = { version = "0.4.40", features = ["serde"] } awaitility = "0.4.1" -rand = "0.9.0" +rand = "0.8.7" icu_collator = "2.0.0" icu = "2.0.0" fake = { version = "4.3.0" , features = ["chrono", "uuid"] } diff --git a/nitrite/Cargo.toml b/nitrite/Cargo.toml index f5365d5..f226a88 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.8.7" } # 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"] }