k-snowflake 2.1.1

Simple one-dependency implementation of Twitter`s (X) snowflake in rust
Documentation
1
2
3
4
5
6
7
8
use k_snowflake::create_snowflake;

#[test]
fn create_million_snowflakes_from_context() {
    for _i in 0..1_000_000 {
        create_snowflake().to_decimal();
    }
}