hel-random

Crates.iohel-random
lib.rshel-random
version0.4.0
sourcesrc
created_at2023-07-01 08:07:56.503352
updated_at2023-07-09 17:13:03.715667
descriptionSimple RNG with weak entropy source (alloc) and xoshiro256++ hashing
homepage
repositoryhttps://github.com/Hellaeh/random.git
max_upload_size
id905354
size44,721
Hellaeh (Hellaeh)

documentation

https://docs.rs/hel-random

README

hel-random

Simple RNG with weak source of entropy(alloc) and xoshiro256++ hashing

Examples

use hel_random::u64;

let a: u64 = u64();
let b: u64 = u64();

assert!(a != b);

How to install

cargo add hel-random
Commit count: 12

cargo fmt