Remove extern crate hashbrown

We no longer have a "hashbrown" feature, the feature gated `pub extern
crate hashbrown` should have been removed when we removed the feature.
This commit is contained in:
Tobin C. Harding 2023-03-21 15:14:29 +11:00
parent 2f404f9b5c
commit 2d23e11569
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 0 additions and 3 deletions

View File

@ -64,9 +64,6 @@ pub extern crate bitcoin_hashes as hashes;
#[cfg(feature = "bitcoinconsensus")]
#[cfg_attr(docsrs, doc(cfg(feature = "bitcoinconsensus")))]
pub extern crate bitcoinconsensus;
#[cfg(feature = "hashbrown")]
#[cfg_attr(docsrs, doc(cfg(feature = "hashbrown")))]
pub extern crate hashbrown;
pub extern crate secp256k1;
#[cfg(feature = "serde")]