2018-03-25 10:40:31 +02:00
# Rand
2020-12-08 11:57:26 +00:00
[](https://github.com/rust-random/rand/actions)
2018-11-22 19:27:08 +00:00
[](https://crates.io/crates/rand)
[](https://rust-random.github.io/book/)
2020-12-14 14:59:52 +00:00
[](https://rust-random.github.io/rand/rand)
2018-11-22 19:27:08 +00:00
[](https://docs.rs/rand)
2015-02-03 16:57:35 +11:00
2020-11-19 10:22:12 +00:00
A Rust library for random number generation, featuring:
- Easy random value generation and usage via the [`Rng` ](https://docs.rs/rand/*/rand/trait.Rng.html ),
[`SliceRandom` ](https://docs.rs/rand/*/rand/seq/trait.SliceRandom.html ) and
[`IteratorRandom` ](https://docs.rs/rand/*/rand/seq/trait.IteratorRandom.html ) traits
- Secure seeding via the [`getrandom` crate ](https://crates.io/crates/getrandom )
and fast, convenient generation via [`thread_rng` ](https://docs.rs/rand/*/rand/fn.thread_rng.html )
- A modular design built over [`rand_core` ](https://crates.io/crates/rand_core )
([see the book ](https://rust-random.github.io/book/crates.html ))
- Fast implementations of the best-in-class [cryptographic ](https://rust-random.github.io/book/guide-rngs.html#cryptographically-secure-pseudo-random-number-generators-csprngs ) and
[non-cryptographic ](https://rust-random.github.io/book/guide-rngs.html#basic-pseudo-random-number-generators-prngs ) generators
- A flexible [`distributions` ](https://docs.rs/rand/*/rand/distributions/index.html ) module
- Samplers for a large number of random number distributions via our own
[`rand_distr` ](https://docs.rs/rand_distr ) and via
the [`statrs` ](https://docs.rs/statrs/0.13.0/statrs/ )
- [Portably reproducible output ](https://rust-random.github.io/book/portability.html )
- `#[no_std]` compatibility (partial)
- *Many* performance optimisations
It's also worth pointing out what `rand` *is not* :
- Small. Most low-level crates are small, but the higher-level `rand` and
`rand_distr` each 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 ](https://crates.io/crates/fastrand )
and [oorandom ](https://crates.io/crates/oorandom ).
- Slow. We take performance seriously, with considerations also for set-up
time of new distributions, commonly-used parameters, and parameters of the
current sampler.
2018-03-23 15:37:31 +00:00
2018-07-09 18:15:13 +01:00
Documentation:
2020-11-19 10:22:12 +00:00
2018-11-22 19:27:08 +00:00
- [The Rust Rand Book ](https://rust-random.github.io/book )
2020-11-19 10:22:12 +00:00
- [API reference (master branch) ](https://rust-random.github.io/rand )
2018-11-22 19:27:08 +00:00
- [API reference (docs.rs) ](https://docs.rs/rand )
2018-07-09 18:15:13 +01:00
2015-02-03 16:57:35 +11:00
## Usage
Add this to your `Cargo.toml` :
```toml
[dependencies]
2022-02-14 08:38:55 +00:00
rand = "0.8.5"
2015-02-03 16:57:35 +11:00
```
2018-11-22 19:27:08 +00:00
To get started using Rand, see [The Book ](https://rust-random.github.io/book ).
2018-05-11 10:42:10 +02:00
2018-03-11 12:07:24 +00:00
## Versions
2017-12-11 16:39:13 +00:00
2020-11-19 10:22:12 +00:00
Rand is *mature* (suitable for general usage, with infrequent breaking releases
2024-03-25 14:56:17 +00:00
which minimise breakage) but not yet at 1.0. Current versions are:
2018-11-08 18:12:01 +00:00
2020-12-14 16:04:34 +00:00
- Version 0.8 was released in December 2020 with many small changes.
2024-03-25 14:56:17 +00:00
- Version 0.9 is in development with many small changes.
2018-01-02 14:35:06 +00:00
2024-03-25 14:56:17 +00:00
See the [CHANGELOG ](CHANGELOG.md ) or [Upgrade Guide ](https://rust-random.github.io/book/update.html ) for more details.
2017-12-11 16:39:13 +00:00
2018-03-23 15:37:31 +00:00
## Crate Features
2017-12-14 16:36:28 +00:00
2019-05-07 09:57:43 +01:00
Rand is built with these features enabled by default:
2017-12-14 16:36:28 +00:00
2019-05-07 09:57:43 +01:00
- `std` enables functionality dependent on the `std` lib
2020-03-09 15:22:13 +00:00
- `alloc` (implied by `std` ) enables functionality requiring an allocator
2019-05-07 09:57:43 +01:00
- `getrandom` (implied by `std` ) is an optional dependency providing the code
behind `rngs::OsRng`
2020-03-09 15:22:13 +00:00
- `std_rng` enables inclusion of `StdRng` , `thread_rng` and `random`
(the latter two *also* require that `std` be enabled)
2019-05-07 09:57:43 +01:00
Optionally, the following dependencies can be enabled:
2024-03-25 14:56:17 +00:00
- `log` enables logging via [log ](https://crates.io/crates/log )
2019-05-07 09:57:43 +01:00
Additionally, these features configure Rand:
2019-05-13 11:18:52 +01:00
- `small_rng` enables inclusion of the `SmallRng` PRNG
2022-08-05 09:30:05 +01:00
- `nightly` includes some additions requiring nightly Rust
2019-05-07 09:57:43 +01:00
- `simd_support` (experimental) enables sampling of SIMD values
2020-09-22 16:59:16 +02:00
(uniformly random SIMD integers and floats), requiring nightly Rust
2020-09-22 20:05:04 +02:00
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.
2019-05-07 09:57:43 +01:00
Rand supports limited functionality in `no_std` mode (enabled via
2024-05-08 16:10:32 +03:00
`default-features = false` ). In this case, `OsRng` and `from_os_rng` are
2019-05-07 09:57:43 +01:00
unavailable (unless `getrandom` is enabled), large parts of `seq` are
unavailable (unless `alloc` is enabled), and `thread_rng` and `random` are
unavailable.
2017-06-14 12:22:22 -07:00
2024-03-25 14:56:17 +00:00
## Portability and platform support
Many (but not all) algorithms are intended to have reproducible output. Read more in the book: [Portability ](https://rust-random.github.io/book/portability.html ).
The Rand library supports a variety of CPU architectures. Platform integration is outsourced to [getrandom ](https://docs.rs/getrandom/latest/getrandom/ ).
2021-05-31 17:43:57 +01:00
### WASM support
2022-08-14 16:59:12 +09:00
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 `getrandom` 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
2021-05-31 17:43:57 +01:00
[getrandom#WebAssembly support ](https://docs.rs/getrandom/latest/getrandom/#webassembly-support ).
2017-06-14 12:22:22 -07:00
# License
2018-05-11 10:42:10 +02:00
Rand is distributed under the terms of both the MIT license and the
Apache License (Version 2.0).
2017-06-14 12:22:22 -07:00
2018-08-24 09:22:35 +01:00
See [LICENSE-APACHE ](LICENSE-APACHE ) and [LICENSE-MIT ](LICENSE-MIT ), and
[COPYRIGHT ](COPYRIGHT ) for details.