prrng
a collection of psuedo-random number generators.
this crate provides a few prng algorithms, easily composable with each other via the [Random] trait.
use XorShift32;
prrng is for fun, and mainly intended to have minimal and extremely simple implementations of various rng algorithms, including popular ones like some xorshift variants or ChaCha, and including very esoteric ones like a recreation of the infamous RANDU function, or even the rng used in BBC Elite. all this, while being completely no_std.
everything here is best effort.