From bab898e75bbf49b74dc84d8808dc59114d534da0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Apr 2026 23:52:32 +0000 Subject: [PATCH] build(deps): update rand requirement from ^0.8.5 to ^0.10.1 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.5...0.10.1) --- updated-dependencies: - dependency-name: rand dependency-version: 0.10.1 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 77b9e92..7ee85fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ bitflags = "^2.4.1" # Used by the rcrypto feature (see above). num-integer = { version = "^0.1.45", optional = true } num-traits = { version = "^0.2.16", optional = true } -rand = { version = "^0.8.5", optional = true } +rand = { version = "^0.10.1", optional = true } sha2 = { version = "0.10.8", features = ["oid"], optional = true } rsa = { version = "^0.9.3", features = ["sha2"], optional = true } const-oid = { version = "^0.9.5", default-features = false, optional = true }