Skip to content

Commit 6b9104f

Browse files
committed
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: rust-bitcoin#3650
1 parent 699f5b9 commit 6b9104f

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)