From 537a3ac237531e66132df4a7ba584f4ca79b7831 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Mar 2026 14:53:36 +0000 Subject: [PATCH] Update rand requirement from 0.8 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/0.8.0...0.10.0) --- updated-dependencies: - dependency-name: rand dependency-version: 0.10.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- disprove/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/disprove/Cargo.toml b/disprove/Cargo.toml index e5e892c..12ccf90 100644 --- a/disprove/Cargo.toml +++ b/disprove/Cargo.toml @@ -15,8 +15,8 @@ std = [] macros = ["dep:disprove_macros"] [dependencies] -rand = { version = "0.9", features = ["small_rng"] } +rand = { version = "0.10", features = ["small_rng"] } disprove_macros = { path = "../disprove_macros", optional = true } [dev-dependencies] -rand = "0.9" +rand = "0.10"