Skip to content

Commit 8384783

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 2403a7c commit 8384783

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
@@ -189,7 +189,7 @@ pub use crate::context::{All, SignOnly, VerifyOnly};
189189
pub use crate::context::{Context, Signing, Verification, AllPreallocated, SignOnlyPreallocated, VerifyOnlyPreallocated};
190190
use crate::ffi::types::AlignedType;
191191
use crate::ffi::CPtr;
192-
pub use crate::key::{PublicKey, SecretKey, *};
192+
pub use crate::key::{PublicKey, SecretKey, Keypair, XOnlyPublicKey, Parity, InvalidParityValue};
193193
pub use crate::scalar::Scalar;
194194

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

0 commit comments

Comments
 (0)