From 7011bcdaf3eb6e29f7828dedf19157a080b8c92b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 16:53:48 +0000 Subject: [PATCH] chore(deps): update sha2 requirement in /tools/cli-wallet Updates the requirements on [sha2](https://github.com/RustCrypto/hashes) to permit the latest version. - [Commits](https://github.com/RustCrypto/hashes/compare/groestl-v0.10.0...sha2-v0.11.0) --- updated-dependencies: - dependency-name: sha2 dependency-version: 0.11.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- tools/cli-wallet/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cli-wallet/Cargo.toml b/tools/cli-wallet/Cargo.toml index f2ebd87e..d81160d1 100644 --- a/tools/cli-wallet/Cargo.toml +++ b/tools/cli-wallet/Cargo.toml @@ -14,7 +14,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" reqwest = { version = "0.11", features = ["json"] } tokio = { version = "1.0", features = ["full"] } -sha2 = "0.10" +sha2 = "0.11" hex = "0.4" rand = "0.8" secp256k1 = "0.27"