Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 416 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 416 Bytes

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