A Rust library for generating UUID v4.
Run:
bash
cargo add uuidv4
Or manually add to your Cargo.toml:
toml
[dependencies]
uuidv4 = "0.1.0"
```rust use uuidv4::uuid;
fn main() { let myuuid = uuid::v4(); println!("Generated UUID: {}", myuuid); } ```