restore missing `mem` import in key.rs
This commit is contained in:
parent
0d41c23c21
commit
a810880c54
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
#[cfg(any(test, feature = "rand"))] use rand::Rng;
|
#[cfg(any(test, feature = "rand"))] use rand::Rng;
|
||||||
|
|
||||||
use std::fmt;
|
use std::{fmt, mem};
|
||||||
|
|
||||||
use super::{Secp256k1};
|
use super::{Secp256k1};
|
||||||
use super::Error::{self, InvalidPublicKey, InvalidSecretKey};
|
use super::Error::{self, InvalidPublicKey, InvalidSecretKey};
|
||||||
|
|
Loading…
Reference in New Issue