Skip to content

hypervisor/uuidv4

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages