bitcoin: Remove bech32 from the public API

The only place that `bech32` appears in the pubic API is as a pub extern
crate re-export. This is totally unnecessary since no other `bech32`
functions or types appear in the public API.

Removing `bech32` from the public API allows us to stabilize
`rust-bitcoin` without waiting for `bech32` to stabalize - WIN.
This commit is contained in:
Tobin C. Harding 2024-01-23 10:21:10 +11:00
parent 9eec1082ec
commit 9eeadaab98
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 0 additions and 3 deletions

View File

@ -59,9 +59,6 @@ extern crate alloc;
/// Encodes and decodes base64 as bytes or utf8.
pub extern crate base64;
/// Encodes and decodes the Bech32 forrmat.
pub extern crate bech32;
/// Rust implementation of cryptographic hash function algorithms.
pub extern crate hashes;