Solomon 3fe355c4a6
enable streaming in random binary/chars (#15361)
# User-Facing Changes

- `random binary` and `random chars` now stream, reducing memory usage
  and allowing interruption with ctrl-c
2025-03-20 19:51:22 +01:00

19 lines
359 B
Rust

mod binary;
mod bool;
mod byte_stream;
mod chars;
mod dice;
mod float;
mod int;
mod random_;
mod uuid;
pub use self::binary::RandomBinary;
pub use self::bool::RandomBool;
pub use self::chars::RandomChars;
pub use self::dice::RandomDice;
pub use self::float::RandomFloat;
pub use self::int::RandomInt;
pub use self::uuid::RandomUuid;
pub use random_::Random;