| Crates.io | small-uuid |
| lib.rs | small-uuid |
| version | 0.2.4 |
| created_at | 2025-06-14 02:46:32.368723+00 |
| updated_at | 2025-07-06 07:32:31.372153+00 |
| description | cryptographically insecure pseudo-random uuid generator (custom) |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1712075 |
| size | 2,397 |
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);
}