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 error;
#[cfg(any(feature = "lock", feature = "parking-lot"))]
mod mutex;
#[cfg(feature = "snowflake")]
mod snowflake;
mod status;
#[cfg(feature = "ulid")]
mod ulid;
pub use error::*;
#[cfg(any(feature = "lock", feature = "parking-lot"))]
pub use mutex::*;
#[cfg(feature = "snowflake")]
pub use snowflake::*;
pub use status::*;
#[cfg(feature = "ulid")]
pub use ulid::*;