From 1e3b828759776f70ba0aef8e2e63cf48a6ee3ff2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Sep 2025 19:05:55 +0000 Subject: [PATCH] rust/keygen(deps): bump rand_core in /tools/ssh_keygen Bumps [rand_core](https://github.com/rust-random/rand) from 0.6.4 to 0.9.3. - [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/commits) --- updated-dependencies: - dependency-name: rand_core dependency-version: 0.9.3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- tools/ssh_keygen/Cargo.lock | 2 +- tools/ssh_keygen/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/ssh_keygen/Cargo.lock b/tools/ssh_keygen/Cargo.lock index 7d81049d..85852559 100644 --- a/tools/ssh_keygen/Cargo.lock +++ b/tools/ssh_keygen/Cargo.lock @@ -825,7 +825,7 @@ dependencies = [ "anyhow", "clap", "rand 0.9.2", - "rand_core 0.6.4", + "rand_core 0.9.3", "ssh-key", "tempfile", ] diff --git a/tools/ssh_keygen/Cargo.toml b/tools/ssh_keygen/Cargo.toml index 093953ca..e38aaf08 100644 --- a/tools/ssh_keygen/Cargo.toml +++ b/tools/ssh_keygen/Cargo.toml @@ -10,7 +10,7 @@ anyhow = "1.0" clap = { version = "4.5", features = ["derive"] } ssh-key = { version = "0.6", features = ["ed25519", "rsa", "ecdsa", "rand_core"] } rand = "0.9" -rand_core = "0.6" +rand_core = "0.9" [dev-dependencies] tempfile = "3.22"