From f9ab3aea8abb0bf17d0a03be29d510049a85d0a9 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Tue, 26 Nov 2024 10:13:19 +1100 Subject: [PATCH] Re-export bech32 crate `rust-bitcoin` is a lot further from 1.0 than `bech32` is. We previously removed the re-export of `bech32` because we thought it might hold us up releasing `rust-bitcoin 1.0` but in hindsite this was incorrect. Having a public re-export of dependencies helps users keep their deps in sync with those in `rust-bitcoin` and is thus useful. Close: #3650 --- bitcoin/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bitcoin/src/lib.rs b/bitcoin/src/lib.rs index 7a73dc224..9727d4db8 100644 --- a/bitcoin/src/lib.rs +++ b/bitcoin/src/lib.rs @@ -68,6 +68,9 @@ pub extern crate base64; /// Bitcoin base58 encoding and decoding. pub extern crate base58; +/// Re-export the `bech32` crate. +pub extern crate bech32; + /// Rust implementation of cryptographic hash function algorithms. pub extern crate hashes;