| Crates.io | hel-random |
| lib.rs | hel-random |
| version | 0.5.2 |
| created_at | 2023-07-01 08:07:56.503352+00 |
| updated_at | 2025-01-16 16:00:18.997964+00 |
| 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 | 46,189 |
Simple RNG with weak source of entropy(alloc and sub-μs) and xoshiro256++ hashing
use hel_random::u64;
let a: u64 = u64();
let b: u64 = u64();
assert!(a != b);
cargo add hel-random