ferroid 2.0.0

High-performance ULID and Snowflake-style IDs. Unique, monotonic, and lexicographically sortable IDs optimized for low-latency services and async workloads.
Documentation
1
2
3
4
5
6
7
mod interface;
#[cfg(all(feature = "std", feature = "alloc", target_has_atomic = "64"))]
mod mono_clock;

pub use interface::*;
#[cfg(all(feature = "std", feature = "alloc", target_has_atomic = "64"))]
pub use mono_clock::*;