angdev / uuid_v1_rs

UUID Version 1 implementation written in Rust

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

uuid_v1

crates.io version

uuid_v1 provides Rust implementation of Universally Unique Identifier (UUID) Version 1. Implementation inspired by satori/go.uuid, rust-lang-nursely/uuid

Documentation

Example

extern crate uuid_v1;

fn main() {
    let uuid = uuid_v1::new_v1();
    println!("{}", uuid.to_string());
}

About

UUID Version 1 implementation written in Rust

License:MIT License


Languages

Language:Rust 100.0%