simple-uuid

Crates.iosimple-uuid
lib.rssimple-uuid
version0.5.1
sourcesrc
created_at2021-03-19 13:16:25.475194
updated_at2021-08-01 21:02:05.961367
descriptionA Simple Universally Unique IDentifier (UUID)
homepage
repositoryhttps://github.com/awh6al/simple-uuid
max_upload_size
id370973
size23,833
Abdelwahab (ab22593k)

documentation

https://docs.rs/simple-uuid

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 crate generates and inspects UUIDs based on RFC 4122.

Install

[dependencies]
simple-uuid = { version = "*", features = ["rand_num"] }

Usage

use simple_uuid::v4;
println!("{}", v4!())

Security

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

Commit count: 149

cargo fmt