Crates.io | meiid |
lib.rs | meiid |
version | 0.1.2 |
source | src |
created_at | 2022-03-18 01:08:14.422336 |
updated_at | 2022-03-18 01:12:37.57668 |
description | Meiid UUID generator based on current date for rust |
homepage | |
repository | https://github.com/borngraced/meiid-rust/ |
max_upload_size | |
id | 552468 |
size | 4,356 |
Meiid UUID generator based on current date for rust
All generated uuid are unique in the convention {####-####-year/month/day}, so the chances of encountering a duplicate ID even in external data is 1 in a billion. Also, this module is able to generate 1 million "unique" uuid(s) in 60.5secs
This module makes it easy to generate uuid for database table or wherever you might need one
USAGE:
use rust::Meiid;
let init = Meiid::new();
let id = init.uuid();
id can then be used as you'd like to
ENjoy :)