Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 255 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 255 Bytes

UUIDv7 for Rust

A simple UUIDv7 crate.

let uid = uuidv7::create();

This returns a string.

Alternatively, a 16-byte binary array can be returned:

let raw_uid = uuidv7::create_raw();