| Crates.io | uuidv7 |
| lib.rs | uuidv7 |
| version | 0.1.7 |
| created_at | 2022-03-17 19:57:49.945601+00 |
| updated_at | 2025-01-29 21:31:27.539622+00 |
| description | UUIDv7 implementation |
| homepage | https://github.com/jedisct1/rust-uuidv7 |
| repository | https://github.com/jedisct1/rust-uuidv7 |
| max_upload_size | |
| id | 551984 |
| size | 11,403 |
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();