From 542527c18f4bc582d020c591c007d015f818db5b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 May 2026 07:50:24 +0000 Subject: [PATCH] chore(deps): update sha3 requirement from 0.11 to 0.12 Updates the requirements on [sha3](https://github.com/RustCrypto/hashes) to permit the latest version. - [Commits](https://github.com/RustCrypto/hashes/compare/groestl-v0.11.0...sha3-v0.12.0) --- updated-dependencies: - dependency-name: sha3 dependency-version: 0.12.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- codetable/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codetable/Cargo.toml b/codetable/Cargo.toml index f9e3053a..eb23e5c2 100644 --- a/codetable/Cargo.toml +++ b/codetable/Cargo.toml @@ -28,7 +28,7 @@ blake2s_simd = { version = "1.0.0", default-features = false, optional = true } blake3 = { version = "1.2.0", default-features = false, optional = true } sha1 = { version = "0.11", default-features = false, optional = true } sha2 = { version = "0.11", default-features = false, optional = true } -sha3 = { version = "0.11", default-features = false, optional = true } +sha3 = { version = "0.12", default-features = false, optional = true } strobe-rs = { version = "0.13", default-features = false, optional = true } ripemd = { version = "0.2", default-features = false, optional = true } multihash-derive = { version = "0.9.3", path = "../derive", default-features = false }