From 1a582db16021e696effeb6080d1197a23c620cf2 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Fri, 10 Jun 2022 12:21:29 +1000 Subject: [PATCH] Remove redundant import Clippy emits: warning: this import is redundant This is a remnant of edition 2015, now we have edition 2018 we no longer need this import statement. --- src/context.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/context.rs b/src/context.rs index b5b5525..a1f849c 100644 --- a/src/context.rs +++ b/src/context.rs @@ -114,9 +114,6 @@ mod alloc_only { use crate::ffi::{self, types::{c_uint, c_void}}; use crate::{Secp256k1, Signing, Verification, Context, AlignedType}; - #[cfg(feature = "rand-std")] - use rand; - impl private::Sealed for SignOnly {} impl private::Sealed for All {} impl private::Sealed for VerifyOnly {}