idworker 1.1.1

A high-performance distributed ID generator library implementing Snowflake algorithm variants with multiple optimization modes for different performance requirements.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod generator;
mod id_worker;
mod id_worker_config;
mod id_worker_error;
mod id_worker_utils;
mod internal;

pub use generator::*;
pub use id_worker::*;
pub use id_worker_config::*;
pub use id_worker_error::*;
pub use id_worker_utils::*;