Crates.io | simpleflake |
lib.rs | simpleflake |
version | 0.0.4 |
source | src |
created_at | 2014-12-29 23:50:37.582123 |
updated_at | 2015-12-15 00:03:39.936387 |
description | Distributed ID generation in Rust for the lazy. |
homepage | |
repository | https://github.com/michaelcontento/simpleflake-rs |
max_upload_size | |
id | 663 |
size | 4,326 |
Distributed ID generation in rust for the lazy. Based on the awesome python implementation from SawdustSoftware.
You can read an overview of what this does and why it came into being at the Sawdust Software Blog.
Just add this crate as a dependency to your Cargo.toml
:
[dependencies.simpleflake]
git = "https://github.com/michaelcontento/simpleflake-rs.git"
extern crate simpleflake;
let new_id = simpleflake::new();
println!("generated id: {}", new_id);
let parts = simpleflake::parse(new_id);
println!("timestamp: {}", parts.timestamp);
println!("random bits: {}", parts.random_bits);