small-uuid 0.2.2

cryptographically insecure pseudo-random uuid generator (custom)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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);
}
```