A Rust library for generating UUID v4.
Run:
cargo add uuidv4Or manually add to your Cargo.toml:
[dependencies]
uuidv4 = "1.0.0"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