dflake

Crates.iodflake
lib.rsdflake
version0.1.0
sourcesrc
created_at2021-04-09 17:38:52.418483
updated_at2021-04-09 17:38:52.418483
descriptionA simple Discord snowflake parsing library.
homepagehttps://github.com/Elinvynia/dflake
repositoryhttps://github.com/Elinvynia/dflake.git
max_upload_size
id381398
size19,780
ChloƩ Monette (Elinvynia)

documentation

https://docs.rs/dflake

README

ci-badge docs-badge crate-version

dflake

A simple Discord snowflake parsing library. Comes with optional chrono support using the chrono_support feature.

Sample Usage

use dflake::parse;

fn main() {
    let dflake = parse(3971046231244935168);
    println!("My internal process ID is: {}", dflake.process_id);
}
Commit count: 1

cargo fmt