Skip to content

Commit 863fd96

Browse files
committed
Remove wildcard re-exports of key types
Wildcards make it hard to grep for where stuff comes from, explicit imports and re-exports are ... more explicit. Re-export the `key` types explicitly.
1 parent c1c5c07 commit 863fd96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ pub use crate::context::{
191191
};
192192
use crate::ffi::types::AlignedType;
193193
use crate::ffi::CPtr;
194-
pub use crate::key::{PublicKey, SecretKey, *};
194+
pub use crate::key::{InvalidParityValue, Keypair, Parity, PublicKey, SecretKey, XOnlyPublicKey};
195195
pub use crate::scalar::Scalar;
196196

197197
/// Trait describing something that promises to be a 32-byte random number; in particular,

0 commit comments

Comments
 (0)