Rand is a set of crates supporting (pseudo-)random generators:
- Built over a standard RNG trait: rand_core::RngCore
- With fast implementations of both strong and
small generators: rand::rngs, and more RNGs:rand_chacha,rand_xoshiro,rand_pcg, rngs repo
- rand::rngis an asymptotically-fast, automatically-seeded and reasonably strong generator available on all- stdtargets
- Direct support for seeding generators from the getrandom crate
With broad support for random value generation and random processes:
- StandardUniformrandom value sampling,- Uniform-ranged value sampling and more
- Samplers for a large number of non-uniform random number distributions via our own
rand_distrand via thestatrs
- Random processes (mostly choose and shuffle) via rand::seqtraits
All with:
- Portably reproducible output
- #[no_std]compatibility (partial)
- Many performance optimisations thanks to contributions from the wide user-base
Rand is not:
- Small (LoC). Most low-level crates are small, but the higher-level randandrand_distreach contain a lot of functionality.
- Simple (implementation). We have a strong focus on correctness, speed and flexibility, but not simplicity. If you prefer a small-and-simple library, there are alternatives including fastrand and oorandom.
- A cryptography library. Rand provides functionality for generating unpredictable random data (potentially applicable depending on requirements) but does not provide high-level cryptography functionality.
Rand is a community project and cannot provide legally-binding guarantees of security.
Documentation:
Rand is mature (suitable for general usage, with infrequent breaking releases which minimise breakage) but not yet at 1.0. Current versions are:
- Version 0.9 was released in January 2025.
See the CHANGELOG or Upgrade Guide for more details.
Rand is built with these features enabled by default:
- stdenables functionality dependent on the- stdlib
- alloc(implied by- std) enables functionality requiring an allocator
- os_rng(implied by- std) enables- rngs::OsRng, using the getrandom crate
- std_rngenables inclusion of- StdRng,- ThreadRng
Optionally, the following dependencies can be enabled:
- logenables logging via log
Additionally, these features configure Rand:
- small_rngenables inclusion of the- SmallRngPRNG
- nightlyincludes some additions requiring nightly Rust
- simd_support(experimental) enables sampling of SIMD values (uniformly random SIMD integers and floats), requiring nightly Rust
Note that nightly features are not stable and therefore not all library and
compiler versions will be compatible. This is especially true of Rand's
experimental simd_support feature.
Rand supports limited functionality in no_std mode (enabled via
default-features = false). In this case, OsRng and from_os_rng are
unavailable (unless os_rng is enabled), large parts of seq are
unavailable (unless alloc is enabled), and ThreadRng is unavailable.
Many (but not all) algorithms are intended to have reproducible output. Read more in the book: Portability.
The Rand library supports a variety of CPU architectures. Platform integration is outsourced to getrandom.
Seeding entropy from OS on WASM target wasm32-unknown-unknown is not
automatically supported by rand or getrandom. If you are fine with
seeding the generator manually, you can disable the os_rng feature
and use the methods on the SeedableRng trait. To enable seeding from OS,
either use a different target such as wasm32-wasi or add a direct
dependency on getrandom with the js feature (if the target supports
JavaScript). See
getrandom#WebAssembly support.
Rand is distributed under the terms of both the MIT license and the Apache License (Version 2.0).
See LICENSE-APACHE and LICENSE-MIT, and COPYRIGHT for details.