beakid 0.1.1

Lock-free unique ID generator inspired by Twitter Snowflake
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![deny(warnings)]

pub mod beakid;
pub use beakid::BeakId;

pub mod generator;
pub use generator::Generator;

pub mod macros;

pub mod error;
pub use error::Error;

pub(crate) mod states;