Merge rust-bitcoin/rust-bitcoin#3657: Re-export bech32 crate

f9ab3aea8a Re-export bech32 crate (Tobin C. Harding)

Pull request description:

  `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

ACKs for top commit:
  apoelstra:
    ACK f9ab3aea8abb0bf17d0a03be29d510049a85d0a9; successfully ran local tests; Yeah, let's backport

Tree-SHA512: 62b240bcf7a7f9dd8d4620a44e06a28f07d96eb555ec14500750190f2f6248c915b38d6e0eeab953973c6233d4782d27ec3f7939370e3474ea944d40b9aa8ebb
This commit is contained in:
merge-script 2024-11-26 16:06:06 +00:00
commit 3aed196983
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
1 changed files with 3 additions and 0 deletions

View File

@ -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;