From b86a93d456a146eb1cfaa685262e60b0784bc3ee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Mar 2026 18:59:07 +0000 Subject: [PATCH 1/2] build(deps): bump sha1 from 0.11.0-rc.5 to 0.11.0 Bumps [sha1](https://github.com/RustCrypto/hashes) from 0.11.0-rc.5 to 0.11.0. - [Commits](https://github.com/RustCrypto/hashes/compare/sha1-v0.11.0-rc.5...sha1-v0.11.0) --- updated-dependencies: - dependency-name: sha1 dependency-version: 0.11.0 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 6 +++--- ssh-key/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4a65dc9..7ba85c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -731,12 +731,12 @@ dependencies = [ [[package]] name = "sha1" -version = "0.11.0-rc.5" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b167252f3c126be0d8926639c4c4706950f01445900c4b3db0fd7e89fcb750a" +checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214" dependencies = [ "cfg-if", - "cpufeatures 0.2.17", + "cpufeatures 0.3.0", "digest", ] diff --git a/ssh-key/Cargo.toml b/ssh-key/Cargo.toml index 501d034..47a3863 100644 --- a/ssh-key/Cargo.toml +++ b/ssh-key/Cargo.toml @@ -49,7 +49,7 @@ rand_core = { version = "0.10", optional = true, default-features = false } rsa = { version = "0.10.0-rc.17", 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.0-rc.5", optional = true, default-features = false, features = ["oid"] } +sha1 = { version = "0.11.0", optional = true, default-features = false, features = ["oid"] } [dev-dependencies] hex-literal = "1" From 7d3c0656ec686890d469d013726f914c968f3a15 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 30 Mar 2026 13:35:39 -0600 Subject: [PATCH 2/2] Apply suggestion from @tarcieri --- ssh-key/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssh-key/Cargo.toml b/ssh-key/Cargo.toml index 47a3863..d8911b6 100644 --- a/ssh-key/Cargo.toml +++ b/ssh-key/Cargo.toml @@ -49,7 +49,7 @@ rand_core = { version = "0.10", optional = true, default-features = false } rsa = { version = "0.10.0-rc.17", 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.0", optional = true, default-features = false, features = ["oid"] } +sha1 = { version = "0.11", optional = true, default-features = false, features = ["oid"] } [dev-dependencies] hex-literal = "1"