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:
parent
d54c04be00
commit
f9ab3aea8a
|
@ -68,6 +68,9 @@ pub extern crate base64;
|
||||||
/// Bitcoin base58 encoding and decoding.
|
/// Bitcoin base58 encoding and decoding.
|
||||||
pub extern crate base58;
|
pub extern crate base58;
|
||||||
|
|
||||||
|
/// Re-export the `bech32` crate.
|
||||||
|
pub extern crate bech32;
|
||||||
|
|
||||||
/// Rust implementation of cryptographic hash function algorithms.
|
/// Rust implementation of cryptographic hash function algorithms.
|
||||||
pub extern crate hashes;
|
pub extern crate hashes;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue