small-uuid

Crates.iosmall-uuid
lib.rssmall-uuid
version0.2.4
created_at2025-06-14 02:46:32.368723+00
updated_at2025-07-06 07:32:31.372153+00
descriptioncryptographically insecure pseudo-random uuid generator (custom)
homepage
repository
max_upload_size
id1712075
size2,397
Shin Morisawa (shinmorisawa)

documentation

README

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);
}
Commit count: 0

cargo fmt