2018-03-25 10:40:31 +02:00
|
|
|
# Rand
|
|
|
|
|
2018-08-13 18:00:37 +01:00
|
|
|
[](https://travis-ci.org/rust-random/rand)
|
2018-09-25 14:19:37 +01:00
|
|
|
[](https://ci.appveyor.com/project/rust-random/rand)
|
2018-11-22 19:27:08 +00:00
|
|
|
[](https://crates.io/crates/rand)
|
|
|
|
[](https://rust-random.github.io/book/)
|
|
|
|
[](https://rust-random.github.io/rand)
|
|
|
|
[](https://docs.rs/rand)
|
2019-03-28 10:51:29 +00:00
|
|
|
[](https://github.com/rust-random/rand#rust-version-requirements)
|
2015-02-03 16:57:35 +11:00
|
|
|
|
2018-05-11 10:42:10 +02:00
|
|
|
A Rust library for random number generation.
|
2015-02-03 16:57:35 +11:00
|
|
|
|
2018-05-11 10:42:10 +02:00
|
|
|
Rand provides utilities to generate random numbers, to convert them to useful
|
|
|
|
types and distributions, and some randomness-related algorithms.
|
2018-03-23 15:37:31 +00:00
|
|
|
|
2018-05-11 12:31:17 +02:00
|
|
|
The core random number generation traits of Rand live in the [rand_core](
|
2018-11-08 18:12:01 +00:00
|
|
|
https://crates.io/crates/rand_core) crate but are also exposed here; RNG
|
|
|
|
implementations should prefer to use `rand_core` while most other users should
|
|
|
|
depend on `rand`.
|
2018-03-23 15:37:31 +00:00
|
|
|
|
2018-07-09 18:15:13 +01:00
|
|
|
Documentation:
|
2018-11-22 19:27:08 +00:00
|
|
|
- [The Rust Rand Book](https://rust-random.github.io/book)
|
|
|
|
- [API reference (master)](https://rust-random.github.io/rand)
|
|
|
|
- [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]
|
2018-11-08 18:12:01 +00:00
|
|
|
rand = "0.6"
|
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
|
|
|
|
2018-11-08 18:12:01 +00:00
|
|
|
The Rand lib is not yet stable, however we are careful to limit breaking changes
|
|
|
|
and warn via deprecation wherever possible. Patch versions never introduce
|
|
|
|
breaking changes. The following minor versions are supported:
|
|
|
|
|
|
|
|
- Version 0.6 was released in November 2018, redesigning the `seq` module,
|
|
|
|
moving most PRNGs to external crates, and many small changes.
|
|
|
|
- Version 0.5 was released in May 2018, as a major reorganisation
|
|
|
|
(introducing `RngCore` and `rand_core`, and deprecating `Rand` and the
|
|
|
|
previous distribution traits).
|
|
|
|
- Version 0.4 was released in December 2017, but contained almost no breaking
|
|
|
|
changes from the 0.3 series.
|
2018-01-02 14:35:06 +00:00
|
|
|
|
2018-11-08 18:12:01 +00:00
|
|
|
A detailed [changelog](CHANGELOG.md) is available.
|
2018-03-11 12:07:24 +00:00
|
|
|
|
2018-11-08 18:12:01 +00:00
|
|
|
When upgrading to the next minor series (especially 0.4 → 0.5), we recommend
|
|
|
|
reading the [Upgrade Guide](https://rust-random.github.io/book/update.html).
|
2018-03-11 12:07:24 +00:00
|
|
|
|
|
|
|
### Rust version requirements
|
|
|
|
|
2019-03-28 10:51:29 +00:00
|
|
|
Since version 0.7 (unreleased), Rand requires **Rustc version 1.32 or greater**.
|
|
|
|
Rand 0.5 requires Rustc 1.22 or greater while versions
|
|
|
|
0.4 and 0.3 (since approx. June 2017) require Rustc version 1.15 or
|
2018-03-11 12:07:24 +00:00
|
|
|
greater. Subsets of the Rand code may work with older Rust versions, but this
|
|
|
|
is not supported.
|
|
|
|
|
|
|
|
Travis CI always has a build with a pinned version of Rustc matching the oldest
|
|
|
|
supported Rust release. The current policy is that this can be updated in any
|
|
|
|
Rand release if required, but the change must be noted in the changelog.
|
2017-12-11 16:39:13 +00:00
|
|
|
|
2018-11-08 18:12:01 +00:00
|
|
|
To avoid bumping the required version unnecessarily, we use a `build.rs` script
|
|
|
|
to auto-detect the compiler version and enable certain features or change code
|
|
|
|
paths automatically. Since this makes it easy to unintentionally make use of
|
|
|
|
features requiring a more recent Rust version, we recommend testing with a
|
|
|
|
pinned version of Rustc if you require compatibility with a specific version.
|
2015-12-10 10:41:58 -05:00
|
|
|
|
2018-03-23 15:37:31 +00:00
|
|
|
## Crate Features
|
2017-12-14 16:36:28 +00:00
|
|
|
|
2019-04-02 13:05:01 +01:00
|
|
|
Rand is built with the `std` and `getrandom` features enabled by default:
|
2019-01-08 11:12:51 +00:00
|
|
|
|
|
|
|
- `std` enables functionality dependent on the `std` lib and implies `alloc`
|
2019-04-02 13:05:01 +01:00
|
|
|
and `getrandom`
|
|
|
|
- `getrandom` is an optional crate, providing the code behind `rngs::OsRng`;
|
2019-01-08 11:12:51 +00:00
|
|
|
the continued existance of this feature is not guaranteed so users are
|
|
|
|
encouraged to specify `std` instead
|
|
|
|
|
|
|
|
The following optional features are available:
|
2017-12-14 16:36:28 +00:00
|
|
|
|
2018-05-11 10:42:10 +02:00
|
|
|
- `alloc` can be used instead of `std` to provide `Vec` and `Box`.
|
|
|
|
- `log` enables some logging via the `log` crate.
|
2018-07-27 16:05:48 +02:00
|
|
|
- `nightly` enables all unstable features (`simd_support`).
|
2018-05-11 10:42:10 +02:00
|
|
|
- `serde1` enables serialization for some types, via Serde version 1.
|
2018-07-26 12:35:36 +02:00
|
|
|
- `simd_support` enables uniform sampling of SIMD types (integers and floats).
|
2018-07-05 22:12:57 -07:00
|
|
|
- `stdweb` enables support for `OsRng` on `wasm32-unknown-unknown` via `stdweb`
|
2018-05-30 09:26:13 +02:00
|
|
|
combined with `cargo-web`.
|
2018-07-05 22:12:57 -07:00
|
|
|
- `wasm-bindgen` enables support for `OsRng` on `wasm32-unknown-unknown` via
|
|
|
|
[`wasm-bindgen`]
|
|
|
|
|
|
|
|
[`wasm-bindgen`]: https://github.com/rustwasm/wasm-bindgen
|
2018-05-11 10:42:10 +02:00
|
|
|
|
|
|
|
`no_std` mode is activated by setting `default-features = false`; this removes
|
|
|
|
functionality depending on `std`:
|
|
|
|
|
|
|
|
- `thread_rng()`, and `random()` are not available, as they require thread-local
|
2018-05-11 12:31:17 +02:00
|
|
|
storage and an entropy source.
|
2018-05-11 10:42:10 +02:00
|
|
|
- Since no external entropy is available, it is not possible to create
|
|
|
|
generators with fresh seeds using the `FromEntropy` trait (user must provide
|
|
|
|
a seed).
|
2018-11-08 18:12:01 +00:00
|
|
|
- Several non-linear distributions distributions are unavailable since `exp`
|
2018-05-11 10:42:10 +02:00
|
|
|
and `log` functions are not provided in `core`.
|
2018-11-08 18:12:01 +00:00
|
|
|
- Large parts of the `seq`-uence module are unavailable, unless the `alloc`
|
|
|
|
feature is used (several APIs and many implementations require `Vec`).
|
2017-12-14 16:36:28 +00:00
|
|
|
|
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.
|