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
This commit is contained in:
Tobin C. Harding 2024-11-26 10:13:19 +11:00
parent d54c04be00
commit f9ab3aea8a
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
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;