uuid_v1 provides Rust implementation of Universally Unique Identifier (UUID) Version 1. Implementation inspired by satori/go.uuid, rust-lang-nursely/uuid
extern crate uuid_v1;
fn main() {
let uuid = uuid_v1::new_v1();
println!("{}", uuid.to_string());
}