From 5c375ea566bb7ded5b74e4c830a08803c17e4525 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Jan 2025 12:58:39 +0000 Subject: [PATCH] build(deps): update rand requirement from 0.8.3 to 0.9.0 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.3...0.9.0) --- updated-dependencies: - dependency-name: rand dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8a8b356..9f9dddb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,14 +24,14 @@ digest = { version = "0.10.2", default-features = false } sha2 = { version = "0.10.0", default-features = false } sha3 = { version = "0.10.0", default-features = false } crossbeam = {version = "0.8", optional = true } -rand = { version = "0.8.3", optional = true } +rand = { version = "0.9.0", optional = true } [dev-dependencies] clap = "3.0.0" tempfile = "3.2.0" hex = "0.4.3" -rand = "0.8.3" +rand = "0.9.0" [features] default = []