Skip to content

Commit 1f84707

Browse files
committed
Merge rust-bitcoin#3662: backport: Re-export bech32 crate
6b9104f Re-export bech32 crate (Tobin C. Harding) Pull request description: Backport rust-bitcoin#3657 --- `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. ACKs for top commit: apoelstra: ACK 6b9104f; successfully ran local tests Tree-SHA512: 96fbadcdeb86601f69aab07625b65524aa4563f41304b091c62b198f222056cc25b2dab665bf4f95d157e50671ff4924fb0ba50208127a140eeaf61fb271cbe3
2 parents 699f5b9 + 6b9104f commit 1f84707

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

bitcoin/src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ pub extern crate base64;
6464
/// Bitcoin base58 encoding and decoding.
6565
pub extern crate base58;
6666

67+
/// Re-export the `bech32` crate.
68+
pub extern crate bech32;
69+
6770
/// Rust implementation of cryptographic hash function algorithms.
6871
pub extern crate hashes;
6972

0 commit comments

Comments
 (0)