uuidv4

Crates.iouuidv4
lib.rsuuidv4
version1.0.0
sourcesrc
created_at2023-08-24 16:19:34.198437
updated_at2023-08-24 16:24:00.075168
descriptionA lightweight library for generating UUID v4
homepage
repository
max_upload_size
id953965
size4,091
Adrian (hypervisor)

documentation

README

uuidv4

A Rust library for generating UUID v4.

Installation

Run:

cargo add uuidv4

Or manually add to your Cargo.toml:

[dependencies]
uuidv4 = "1.0.0"

Usage

use uuidv4::uuid;

fn main() {
    let my_uuid = uuid::v4();
    println!("Generated UUID: {}", my_uuid);
}

You can play around with UUIDs or generate them online here

Commit count: 0

cargo fmt