From df6cc50bb74e45fc2bcc2c937e2e3f756e37e3c4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 19:24:26 +0000 Subject: [PATCH] build(deps): bump rsa from 0.10.0-rc.15 to 0.10.0-rc.16 Bumps [rsa](https://github.com/RustCrypto/RSA) from 0.10.0-rc.15 to 0.10.0-rc.16. - [Changelog](https://github.com/RustCrypto/RSA/blob/master/CHANGELOG.md) - [Commits](https://github.com/RustCrypto/RSA/compare/v0.10.0-rc.15...v0.10.0-rc.16) --- updated-dependencies: - dependency-name: rsa dependency-version: 0.10.0-rc.16 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- ssh-key/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 732b9f1..bfb5ce5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -208,9 +208,9 @@ dependencies = [ [[package]] name = "crypto-bigint" -version = "0.7.0-rc.27" +version = "0.7.0-rc.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b43308b9b6a47554f4612d5b1fb95ff935040aa3927dd42b1d6cbc015a262d96" +checksum = "96dacf199529fb801ae62a9aafdc01b189e9504c0d1ee1512a4c16bcd8666a93" dependencies = [ "cpubits", "ctutils", @@ -626,9 +626,9 @@ dependencies = [ [[package]] name = "rsa" -version = "0.10.0-rc.15" +version = "0.10.0-rc.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b342b99544549f37509ed7fd42b0cea04bfd9ce07c16ca56094cf0fbeefbbcd" +checksum = "6fb9fd8c1edd9e6a2693623baf0fe77ff05ce022a5d7746900ffc38a15c233de" dependencies = [ "const-oid", "crypto-bigint", diff --git a/ssh-key/Cargo.toml b/ssh-key/Cargo.toml index 92c9729..202c070 100644 --- a/ssh-key/Cargo.toml +++ b/ssh-key/Cargo.toml @@ -46,7 +46,7 @@ p256 = { version = "0.14.0-rc.7", optional = true, default-features = false, fea p384 = { version = "0.14.0-rc.7", optional = true, default-features = false, features = ["ecdsa"] } p521 = { version = "0.14.0-rc.7", optional = true, default-features = false, features = ["ecdsa"] } rand_core = { version = "0.10", optional = true, default-features = false } -rsa = { version = "0.10.0-rc.15", optional = true, default-features = false, features = ["sha2"] } +rsa = { version = "0.10.0-rc.16", optional = true, default-features = false, features = ["sha2"] } sec1 = { version = "0.8.0-rc.13", optional = true, default-features = false, features = ["point"] } serde = { version = "1.0.16", optional = true } sha1 = { version = "0.11.0-rc.5", optional = true, default-features = false, features = ["oid"] }