From 8aa04759fc80b2d6267f7d126389e08216240ffb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 23 Aug 2026 09:39:39 +0000 Subject: [PATCH] deps: bump bech32 from 0.11.1 to 0.12.0 Bumps [bech32](https://github.com/rust-bitcoin/rust-bech32) from 0.11.1 to 0.12.0. - [Changelog](https://github.com/rust-bitcoin/rust-bech32/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-bitcoin/rust-bech32/compare/bech32-0.11.1...bech32-0.12.0) --- updated-dependencies: - dependency-name: bech32 dependency-version: 0.12.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 +++++++- crates/tinywallet-bus/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b170aac..5452381 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -85,6 +85,12 @@ version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32637268377fc7b10a8c6d51de3e7fba1ce5dd371a96e342b34e6078db558e7f" +[[package]] +name = "bech32" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "efbd3e1070bbdf4cd88a75264e18e8a26f7cb5c6949eadf0ceb85fb159cf08f8" + [[package]] name = "bitcoin" version = "0.32.102" @@ -1476,7 +1482,7 @@ name = "tinywallet-bus" version = "0.5.0" dependencies = [ "async-trait", - "bech32 0.11.1", + "bech32 0.12.0", "bs58", "hex", "ripemd 0.2.0", diff --git a/crates/tinywallet-bus/Cargo.toml b/crates/tinywallet-bus/Cargo.toml index a069e30..0779216 100644 --- a/crates/tinywallet-bus/Cargo.toml +++ b/crates/tinywallet-bus/Cargo.toml @@ -28,7 +28,7 @@ hex = { version = "0.4", optional = true } # selection and witness-program length rules included. This is what lets a host # validate a Bitcoin address without the `bitcoin` crate's native secp256k1 # build; see `src/address/btc.rs`. -bech32 = { version = "0.11", optional = true } +bech32 = { version = "0.12", optional = true } # RIPEMD-160, the second half of Bitcoin's HASH160. Feeds a `Sha256` (sha2 # 0.11) output, so the two must sit on the same `digest` line — hence 0.2. ripemd = { version = "0.2", optional = true }