Crates.io | rand |
lib.rs | rand |
version | 0.9.0-alpha.2 |
source | src |
created_at | 2015-02-03 06:17:14.147783 |
updated_at | 2024-07-29 10:47:32.758081 |
description | Random number generators and other randomness functionality. |
homepage | https://rust-random.github.io/book |
repository | https://github.com/rust-random/rand |
max_upload_size | |
id | 1339 |
size | 385,950 |
A Rust library for random number generation, featuring:
Rng
,
SliceRandom
and
IteratorRandom
traitsgetrandom
crate
and fast, convenient generation via thread_rng
rand_core
(see the book)distributions
modulerand_distr
and via
the statrs
#[no_std]
compatibility (partial)It's also worth pointing out what rand
is not:
rand
and
rand_distr
each contain a lot of functionality.Documentation:
Add this to your Cargo.toml
:
[dependencies]
rand = "=0.9.0-alpha.2"
rand_distr = "=0.5.0-alpha.2"
To get started using Rand, see The Book.
Rand is mature (suitable for general usage, with infrequent breaking releases which minimise breakage) but not yet at 1.0. Current versions are:
See the CHANGELOG or Upgrade Guide for more details.
Rand is built with these features enabled by default:
std
enables functionality dependent on the std
liballoc
(implied by std
) enables functionality requiring an allocatorgetrandom
(implied by std
) is an optional dependency providing the code
behind rngs::OsRng
std_rng
enables inclusion of StdRng
, thread_rng
and random
(the latter two also require that std
be enabled)Optionally, the following dependencies can be enabled:
log
enables logging via logAdditionally, these features configure Rand:
small_rng
enables inclusion of the SmallRng
PRNGnightly
includes some additions requiring nightly Rustsimd_support
(experimental) enables sampling of SIMD values
(uniformly random SIMD integers and floats), requiring nightly RustNote 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 getrandom
is enabled), large parts of seq
are
unavailable (unless alloc
is enabled), and thread_rng
and random
are
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 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
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.