Remove unnecessary private extern crate

In #2278 I mistakenly left in the `use extern crate` after removing the
`pub` from it - while not incorrect it is unnecessary.
This commit is contained in:
Tobin C. Harding 2023-12-14 08:49:44 +11:00
parent 8afa379f39
commit 0d9c7add4a
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 0 additions and 4 deletions

View File

@ -59,10 +59,6 @@ pub extern crate base64;
/// Encodes and decodes the Bech32 forrmat.
pub extern crate bech32;
/// Bitcoin's libbitcoinconsensus with Rust binding.
#[cfg(feature = "bitcoinconsensus")]
extern crate bitcoinconsensus;
/// Rust implementation of cryptographic hash function algorithems.
pub extern crate hashes;