From 35edcaa4cad8f34555cf72e0e414ffec4987d39c Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Tue, 7 Jun 2022 12:15:22 +1000 Subject: [PATCH] Remove extern crate core statement Now that we have an MSRV of 1.41.1 we no longer need `extern crate core`, remove it. --- src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 12262aa8..51fd3a28 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -62,9 +62,6 @@ extern crate alloc; #[cfg(feature = "no-std")] extern crate core2; -#[cfg(any(feature = "std", test))] -extern crate core; // for Rust 1.29 and no-std tests - // Re-exported dependencies. #[macro_use] pub extern crate bitcoin_hashes as hashes; pub extern crate secp256k1;