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 * DCE 1.1
TOML
[dependencies]
uuid = { version = "0.2.0", features = ["v1"] }
Rust
format(
"{:x}",
Uuid::v1().as_bytes()
);