Crates.io | hel-random |
lib.rs | hel-random |
version | 0.4.0 |
source | src |
created_at | 2023-07-01 08:07:56.503352 |
updated_at | 2023-07-09 17:13:03.715667 |
description | Simple RNG with weak entropy source (alloc) and xoshiro256++ hashing |
homepage | |
repository | https://github.com/Hellaeh/random.git |
max_upload_size | |
id | 905354 |
size | 44,721 |
Simple RNG with weak source of entropy(alloc) and xoshiro256++ hashing
use hel_random::u64;
let a: u64 = u64();
let b: u64 = u64();
assert!(a != b);
cargo add hel-random