uuid-rs 0.2.0

A Universally Unique IDentifier (UUID)
docs.rs failed to build uuid-rs-0.2.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: uuid-rs-0.6.3

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

Install

[dependencies]
uuid = { version = "0.2.0", features = ["v1"] }

Usage

format(
    "{:x}", 
    Uuid::v1().as_bytes()
);