Crates.io | simid |
lib.rs | simid |
version | 0.1.0 |
source | src |
created_at | 2021-01-14 06:03:51.171396 |
updated_at | 2021-01-14 06:03:51.171396 |
description | A Simple Universally Unique IDentifier (UUID) |
homepage | |
repository | https://github.com/wohabz/simid |
max_upload_size | |
id | 341773 |
size | 23,446 |
A universally unique identifier (UUID) is a 128-bit number used to identify information in computer systems. The term globally unique identifier (GUID) is also used.
This crate generates and inspects UUIDs based on
[dependencies]
simid = { version = "0.1.0", features = ["random"] }
use simid::v4;
println!("{}", v4!())
Do not assume that UUIDs are hard to guess; they should not be used as security capabilities.