forked from rust-bitcoin/rust-bech32
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge rust-bitcoin#128: Re-write crate level API
79918f6 Re-write crate level API (Tobin C. Harding) Pull request description: Now includes updates to fuzzing and is on top of rust-bitcoin#130 (bug fix). Now we have all the new `primitives` pieces in place we can re-write the public API to take advantage of them - WIN! Close: rust-bitcoin#126 ACKs for top commit: apoelstra: ACK 79918f6 clarkmoody: ACK 79918f6 Tree-SHA512: 00b575e9bbd0f3768cbea561a6f72425ff4052e88d624e99f1773f61835d104f52c841fa21f9e5cda1347f83e1d8ada75d9c314b9e16fef9f68091fbf1f53b6a
- Loading branch information
Showing
10 changed files
with
653 additions
and
1,223 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// SPDX-License-Identifier: MIT | ||
|
||
#[doc(inline)] | ||
pub use crate::primitives::hrp::Hrp; | ||
#[doc(inline)] | ||
pub use crate::primitives::hrp::BC; | ||
#[doc(inline)] | ||
pub use crate::primitives::hrp::BCRT; | ||
#[doc(inline)] | ||
pub use crate::primitives::hrp::TB; |
Oops, something went wrong.