Crates.io | unik |
lib.rs | unik |
version | 0.3.0 |
source | src |
created_at | 2022-01-23 21:48:53.476207 |
updated_at | 2023-02-20 20:04:48.755249 |
description | A Powerful Universally Unique Identifier (UUID) |
homepage | |
repository | https://github.com/awh6al/unik |
max_upload_size | |
id | 519883 |
size | 25,442 |
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 project is in the development stage. All API's might change without warning and no
guarantees are given about stability. DO NOT USE IN PRODUCTION.
This crate generates and inspects UUIDs based on
[dependencies]
unik = { version = "*", features=["rand"] }
fn main() {
println!("{}", unik::UUID::v4().new());
}
Do not assume that UUIDs are hard to guess; they should not be used as security capabilities.