# small-uuid
a cryptographically insecure, pseudo-random fast uuid generator (custom)
all you have to do is call `get_uuid()`, and you're all set
example:
```rust
use small_uuid::get_uuid;
fn main() {
let uuid: u128 = get_uuid();
println!("{:032x}", uuid);
}
```