//! Umbrella crate for the cnfy library suite.
//!
//! Re-exports inner crates without the `cnfy-` prefix:
//!
//! - `cnfy::uint` — 256-bit modular arithmetic
//! - `cnfy::secp256k1` — secp256k1 elliptic curve operations
pub use cnfy_uint as uint;
pub use cnfy_secp256k1 as secp256k1;