meiid 0.1.2

Meiid UUID generator based on current date for rust
Documentation
  • Coverage
  • 100%
    4 out of 4 items documented1 out of 3 items with examples
  • Size
  • Source code size: 4.35 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 378.92 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 16s Average build duration of successful builds.
  • all releases: 16s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • dontdiewondering

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:

  1. initializes Meiid struct
  2. generates and returns a unique uuid as string
use rust::Meiid;
let init = Meiid::new();
let id = init.uuid();

id can then be used as you'd like to

ENjoy :)