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
8
9
10
11
12
13
14
15
16
mod be_bytes;
mod interface;
#[cfg(feature = "snowflake")]
mod snowflake;
mod to_u64;
#[cfg(feature = "ulid")]
mod ulid;
mod utils;

pub use be_bytes::*;
pub use interface::*;
#[cfg(feature = "snowflake")]
pub use snowflake::*;
pub use to_u64::*;
#[cfg(feature = "ulid")]
pub use ulid::*;