From c91f41617d8857b137bdd2c9d16675cdfe5be867 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Mar 2026 23:42:26 +0000 Subject: [PATCH] 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 | 38 ++++++++++++++++++++++++++++---------- srp/Cargo.toml | 2 +- 2 files changed, 29 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 70ba46f..7d0db23 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -72,6 +72,15 @@ dependencies = [ "hybrid-array", ] +[[package]] +name = "block-buffer" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be" +dependencies = [ + "hybrid-array", +] + [[package]] name = "byteorder" version = "1.5.0" @@ -90,7 +99,7 @@ version = "0.5.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "98d708bac5451350d56398433b19a7889022fa9187df1a769c0edbc3b2c03167" dependencies = [ - "block-buffer", + "block-buffer 0.11.0", "crypto-common", "inout", ] @@ -131,6 +140,15 @@ dependencies = [ "libc", ] +[[package]] +name = "cpufeatures" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201" +dependencies = [ + "libc", +] + [[package]] name = "critical-section" version = "1.2.0" @@ -178,7 +196,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "335f1947f241137a14106b6f5acc5918a5ede29c9d71d3f2cb1678d5075d9fc3" dependencies = [ "cfg-if", - "cpufeatures", + "cpufeatures 0.2.17", "curve25519-dalek-derive", "digest", "fiat-crypto", @@ -202,14 +220,14 @@ dependencies = [ [[package]] name = "digest" -version = "0.11.0-rc.11" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02b42f1d9edf5207c137646b568a0168ca0ec25b7f9eaf7f9961da51a3d91cea" +checksum = "4850db49bf08e663084f7fb5c87d202ef91a3907271aff24a94eb97ff039153c" dependencies = [ - "block-buffer", + "block-buffer 0.12.0", "const-oid", "crypto-common", - "subtle", + "ctutils", ] [[package]] @@ -625,12 +643,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", + "cpufeatures 0.3.0", "digest", ] @@ -641,7 +659,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c5f3b1e2dc8aad28310d8410bd4d7e180eca65fca176c52ab00d364475d0024" dependencies = [ "cfg-if", - "cpufeatures", + "cpufeatures 0.2.17", "digest", ] diff --git a/srp/Cargo.toml b/srp/Cargo.toml index 4fba14b..93e8ee5 100644 --- a/srp/Cargo.toml +++ b/srp/Cargo.toml @@ -25,7 +25,7 @@ subtle = { version = "2.4", default-features = false } [dev-dependencies] getrandom = { version = "0.4", features = ["sys_rng"] } hex-literal = "1" -sha1 = "0.11.0-rc.5" +sha1 = "0.11.0" sha2 = "0.11.0-rc.5" [features]