From 71dcd3ed08d94211f6a51e6d6b218c397a89dfaa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Jun 2026 17:35:00 +0000 Subject: [PATCH] chore(deps): update rand_pcg requirement from 0.9 to 0.10 Updates the requirements on [rand_pcg](https://github.com/rust-random/rngs) to permit the latest version. - [Commits](https://github.com/rust-random/rngs/commits/rand_pcg-0.10.2) --- updated-dependencies: - dependency-name: rand_pcg 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..f836cf6 100644 --- a/crates/null-drift-core/Cargo.toml +++ b/crates/null-drift-core/Cargo.toml @@ -7,5 +7,5 @@ edition = "2024" ndarray = { version = "0.17.2", features = ["serde"] } rand = "0.9" rand_distr = "0.5" -rand_pcg = "0.9" +rand_pcg = "0.10" serde = { version = "1.0", features = ["derive"] }