From 187392b780d143734a706176488f6d6086b53fff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Apr 2026 16:01:00 +0000 Subject: [PATCH] deps: 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] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 794b1aa..41be067 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -81,7 +81,7 @@ p384 = { version = "0.13", default-features = false, features = ["ecdh", "ecdsa" ecdsa = { version = "0.16", default-features = false, features = ["signing", "verifying", "std", "der"], optional = true } digest = { version = "0.10", optional = true } const-oid = { version = "0.9", optional = true } -rand = { version = "0.8", optional = true } +rand = { version = "0.10", optional = true } [dev-dependencies] criterion = { version = "0.8.2", features = ["html_reports"] }