Crates.io | dflake |
lib.rs | dflake |
version | 0.1.0 |
source | src |
created_at | 2021-04-09 17:38:52.418483 |
updated_at | 2021-04-09 17:38:52.418483 |
description | A simple Discord snowflake parsing library. |
homepage | https://github.com/Elinvynia/dflake |
repository | https://github.com/Elinvynia/dflake.git |
max_upload_size | |
id | 381398 |
size | 19,780 |
A simple Discord snowflake parsing library. Comes with optional chrono support using the chrono_support
feature.
use dflake::parse;
fn main() {
let dflake = parse(3971046231244935168);
println!("My internal process ID is: {}", dflake.process_id);
}