From e67d63ebe188c42f4dfa458c0a8f481b8a7c625c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 May 2026 21:26:35 +0000 Subject: [PATCH] build(deps): bump rsa from 0.10.0-rc.17 to 0.10.0-rc.18 Bumps [rsa](https://github.com/RustCrypto/RSA) from 0.10.0-rc.17 to 0.10.0-rc.18. - [Changelog](https://github.com/RustCrypto/RSA/blob/master/CHANGELOG.md) - [Commits](https://github.com/RustCrypto/RSA/compare/v0.10.0-rc.17...v0.10.0-rc.18) --- updated-dependencies: - dependency-name: rsa dependency-version: 0.10.0-rc.18 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- ssh-key/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5225656..71649ed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -626,9 +626,9 @@ dependencies = [ [[package]] name = "rsa" -version = "0.10.0-rc.17" +version = "0.10.0-rc.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87ed3e93fc7e473e464b9726f4759659e72bc8665e4b8ea227547024f416d905" +checksum = "30b2aa4ba0d89f73d1e332df05be0eeab8840351c36ca5654341dfdb57bb3caf" dependencies = [ "const-oid", "crypto-bigint", diff --git a/ssh-key/Cargo.toml b/ssh-key/Cargo.toml index 0bb8eae..c5ac029 100644 --- a/ssh-key/Cargo.toml +++ b/ssh-key/Cargo.toml @@ -46,7 +46,7 @@ p256 = { version = "0.14.0-rc.9", optional = true, default-features = false, fea p384 = { version = "0.14.0-rc.9", optional = true, default-features = false, features = ["ecdsa"] } p521 = { version = "0.14.0-rc.9", optional = true, default-features = false, features = ["ecdsa"] } rand_core = { version = "0.10", optional = true, default-features = false } -rsa = { version = "0.10.0-rc.17", optional = true, default-features = false, features = ["sha2"] } +rsa = { version = "0.10.0-rc.18", optional = true, default-features = false, features = ["sha2"] } sec1 = { version = "0.8", optional = true, default-features = false, features = ["point"] } serde = { version = "1.0.16", optional = true } sha1 = { version = "0.11", optional = true, default-features = false, features = ["oid"] }