Skip to content

Commit 8b3f097

Browse files
committed
Put the secp256k1-sys re-export separately
Just to be extra clear and because we are about to mess with the crate re-exports. Internal change only.
1 parent 302c362 commit 8b3f097

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,11 @@ use core::marker::PhantomData;
189189
use core::ptr::NonNull;
190190
use core::{fmt, mem, str};
191191

192+
#[rustfmt::skip] // Keep public re-exports separate.
193+
pub use secp256k1_sys as ffi;
194+
192195
#[cfg(all(feature = "global-context", feature = "std"))]
193196
pub use context::global::{self, SECP256K1};
194-
pub use secp256k1_sys as ffi;
195197

196198
pub use crate::context::{
197199
rerandomize_global_context, with_global_context, with_raw_global_context, AllPreallocated,

0 commit comments

Comments
 (0)