small-uuid 0.2.2

cryptographically insecure pseudo-random uuid generator (custom)
Documentation

small-uuid

a cryptographically insecure, pseudo-random fast uuid generator (custom)

all you have to do is call get_uuid(), and you're all set

example:

use small_uuid::get_uuid;

fn main() {
    let uuid: u128 = get_uuid();

    println!("{:032x}", uuid);
}