abdelwahabzbal / unik

A Powerful Universally Unique Identifier (UUID)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

A Powerful Universally Unique Identifier (UUID)


Languages

Language:Rust 100.0%