From c27f504468b1b78f77eaacf33ff17c7c5226f7c8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2026 17:34:30 +0000 Subject: [PATCH] chore(deps): update rand requirement from 0.9 to 0.10 Updates the requirements on [rand](https://github.com/rust-random/rand) to permit the latest version. - [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/rand_core-0.9.1...0.10.2) --- updated-dependencies: - dependency-name: rand dependency-version: 0.10.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/null-drift-core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/null-drift-core/Cargo.toml b/crates/null-drift-core/Cargo.toml index a9ee69e..35b69c5 100644 --- a/crates/null-drift-core/Cargo.toml +++ b/crates/null-drift-core/Cargo.toml @@ -5,7 +5,7 @@ edition = "2024" [dependencies] ndarray = { version = "0.17.2", features = ["serde"] } -rand = "0.9" +rand = "0.10" rand_distr = "0.5" rand_pcg = "0.9" serde = { version = "1.0", features = ["derive"] }