From bec6706aacf1be50f3027c97cc3df9bb76e422b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Feb 2025 08:37:02 +0000 Subject: [PATCH] chore(deps): update rand requirement Updates the requirements on [rand](https://github.com/rust-random/rand) to permit the latest version. Updates `rand` to 0.9.0 - [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.9.0) --- updated-dependencies: - dependency-name: rand dependency-type: direct:production dependency-group: prod-dependency ... Signed-off-by: dependabot[bot] --- sample-07-09-rs/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sample-07-09-rs/Cargo.toml b/sample-07-09-rs/Cargo.toml index 790a7edf..51db1222 100644 --- a/sample-07-09-rs/Cargo.toml +++ b/sample-07-09-rs/Cargo.toml @@ -19,7 +19,7 @@ clap = { version = "4.5.20", features = [ "wrap_help", "derive", ] } -rand = "0.8.5" +rand = "0.9.0" rustc-hash = "2.0.0" serde = { version = "1.0.213", features = ["derive"] } tokio = { version = "1.41.0", features = ["full"] }