//! # `SnowID`
//!
//! A Rust implementation of a Snowflake-like ID generator with 42-bit timestamp.
//!
//! Generate 64-bit unique identifiers that are:
//! - ⚡️ Fast (~325ns per ID)
//! - 📈 Time-sorted
//! - 🔄 Monotonic
//! - 🔒 Thread-safe
//! - 🌐 Distributed-ready
// Re-export main types
pub use SnowIDConfig;
pub use SnowIDError;
pub use SnowIDExtractor;
pub use ;