We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05f4278 commit 593a550Copy full SHA for 593a550
src/context.rs
@@ -1,5 +1,5 @@
1
use core::marker::PhantomData;
2
-use core::mem::{self, ManuallyDrop};
+use core::mem::ManuallyDrop;
3
use ffi::{self, CPtr, types::AlignedType};
4
use ffi::types::{c_uint, c_void};
5
use Error;
@@ -105,7 +105,7 @@ mod alloc_only {
105
impl private::Sealed for VerifyOnly {}
106
107
use super::*;
108
- const ALIGN_TO: usize = mem::align_of::<AlignedType>();
+ const ALIGN_TO: usize = ::core::mem::align_of::<AlignedType>();
109
110
/// Represents the set of capabilities needed for signing.
111
pub enum SignOnly {}
0 commit comments