unik

Crates.iounik
lib.rsunik
version0.3.0
sourcesrc
created_at2022-01-23 21:48:53.476207
updated_at2023-02-20 20:04:48.755249
descriptionA Powerful Universally Unique Identifier (UUID)
homepage
repositoryhttps://github.com/awh6al/unik
max_upload_size
id519883
size25,442
Abdelwahab (ab22593k)

documentation

https://docs.rs/unik

README

UUID

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

Install

[dependencies]

unik = { version = "*", features=["rand"] }

Usage

fn main() {
    println!("{}", unik::UUID::v4().new());
}

Security

Do not assume that UUIDs are hard to guess; they should not be used as security capabilities.

Commit count: 49

cargo fmt