From 5c206d4227d7a1fa1916ad3394aaf7b12f472c45 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Feb 2025 08:35:25 +0000 Subject: [PATCH] chore(deps): bump the prod-dependency group across 1 directory with 2 updates Updates the requirements on [rand](https://github.com/rust-random/rand) and [hex-literal](https://github.com/RustCrypto/utils) 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) Updates `hex-literal` to 1.0.0 - [Commits](https://github.com/RustCrypto/utils/compare/hex-literal-v0.4.1...hex-literal-v1.0.0) --- updated-dependencies: - dependency-name: rand dependency-type: direct:production dependency-group: prod-dependency - dependency-name: hex-literal dependency-type: direct:production dependency-group: prod-dependency ... Signed-off-by: dependabot[bot] --- sample-06-rs/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sample-06-rs/Cargo.toml b/sample-06-rs/Cargo.toml index 379205bc..f161ccb3 100644 --- a/sample-06-rs/Cargo.toml +++ b/sample-06-rs/Cargo.toml @@ -17,7 +17,7 @@ clap = { version = "4.5.20", features = [ "wrap_help", "derive", ] } -rand = "0.8.5" +rand = "0.9.0" rsa = { version = "0.9.6" } sha2 = "0.10.8" hex = "0.4.3" @@ -32,5 +32,5 @@ typenum = "1.17.0" ecdsa = { version = "0.16.9", features = ["signing", "verifying", "pkcs8"] } [dev-dependencies] -hex-literal = "0.4.1" +hex-literal = "1.0.0" base64 = "0.22.1"