Merge rust-bitcoin/rust-bitcoin#2283: Remove unnecessary private extern crate

0d9c7add4a Remove unnecessary private extern crate (Tobin C. Harding)

Pull request description:

  In #2278 I mistakenly left in the `use extern crate` after removing the `pub` from it - while not incorrect it is unnecessary.

ACKs for top commit:
  apoelstra:
    ACK 0d9c7add4a

Tree-SHA512: 60a2638feda2ca5aea234de74fc751c8c140a47946f20cac95d804099f0ba7c78d8eef51912446024e2aafa97008bb93334c0fd3e97267a7f91c4ab86ffcd908
This commit is contained in:
Andrew Poelstra 2023-12-13 22:57:53 +00:00
commit e5272f3467
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
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. /// Encodes and decodes the Bech32 forrmat.
pub extern crate bech32; pub extern crate bech32;
/// Bitcoin's libbitcoinconsensus with Rust binding.
#[cfg(feature = "bitcoinconsensus")]
extern crate bitcoinconsensus;
/// Rust implementation of cryptographic hash function algorithems. /// Rust implementation of cryptographic hash function algorithems.
pub extern crate hashes; pub extern crate hashes;