- BREAKING: update rand_core dep to latest
v0.9 - POSSIBLY BREAKING: the seed is now printed to stderr instead of stdout
- Replace dependency on
hexwith better-maintainedconst-hex v1 - Add optional feature
rand-v09: when it's enabled, library re-exportsrand v0.9that will be accessible asrand_dev::rand - Improve CI workflow
See #4
- Add
DevRng::forkmethod that derives a new randomness generator from existing one
May be useful when you have several threads/futures/places where you need access the randomness generation, but you don't want to mess with ownership system. - Changes format of seed printed to stdout
Old format:New format:Tests seed: {seed}New format makes it easier to copy-paste env var when you want to reproduce the tests.RUST_TESTS_SEED={seed} - Add Github Actions
See #2
First release of the library