Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
src/ | H | 03-May-2022 | - | 314 | 165 | |
tests/ | H | 03-May-2022 | - | 119 | 87 | |
.cargo-checksum.json | H A D | 03-May-2022 | 89 | 1 | 1 | |
.cargo_vcs_info.json | H A D | 01-Jan-1970 | 74 | 6 | 5 | |
CHANGELOG.md | H A D | 23-Feb-2019 | 598 | 20 | 14 | |
COPYRIGHT | H A D | 15-Feb-2019 | 569 | 13 | 9 | |
Cargo.toml | H A D | 01-Jan-1970 | 1.3 KiB | 48 | 42 | |
Cargo.toml.orig-cargo | H A D | 23-Feb-2019 | 1 KiB | 37 | 31 | |
LICENSE-APACHE | H A D | 15-Feb-2019 | 10.6 KiB | 202 | 169 | |
LICENSE-MIT | H A D | 15-Feb-2019 | 1.1 KiB | 27 | 23 | |
README.md | H A D | 23-Feb-2019 | 1.9 KiB | 44 | 29 | |
build.rs | H A D | 15-Feb-2019 | 149 | 8 | 6 |
README.md
1# rand_pcg 2 3[![Build Status](https://travis-ci.org/rust-random/rand.svg?branch=master)](https://travis-ci.org/rust-random/rand) 4[![Build Status](https://ci.appveyor.com/api/projects/status/github/rust-random/rand?svg=true)](https://ci.appveyor.com/project/rust-random/rand) 5[![Latest version](https://img.shields.io/crates/v/rand_pcg.svg)](https://crates.io/crates/rand_pcg) 6[[![Book](https://img.shields.io/badge/book-master-yellow.svg)](https://rust-random.github.io/book/) 7[![API](https://img.shields.io/badge/api-master-yellow.svg)](https://rust-random.github.io/rand/rand_pcg) 8[![API](https://docs.rs/rand_pcg/badge.svg)](https://docs.rs/rand_pcg) 9[![Minimum rustc version](https://img.shields.io/badge/rustc-1.22+-lightgray.svg)](https://github.com/rust-random/rand#rust-version-requirements) 10 11Implements a selection of PCG random number generators. 12 13> PCG is a family of simple fast space-efficient statistically good algorithms 14> for random number generation. [Melissa O'Neill, Harvey Mudd College, 2014]. 15 16The PCG algorithms are not suitable for cryptographic uses, but perform well 17in statistical tests, use little memory and are fairly fast. 18See the [pcg-random website](http://www.pcg-random.org/). 19 20This crate depends on [rand_core](https://crates.io/crates/rand_core) and is 21part of the [Rand project](https://github.com/rust-random/rand). 22 23Links: 24 25- [API documentation (master)](https://rust-random.github.io/rand/rand_pcg) 26- [API documentation (docs.rs)](https://docs.rs/rand_pcg) 27- [Changelog](CHANGELOG.md) 28 29 30## Crate Features 31 32`rand_pcg` is `no_std` compatible by default. 33 34The `serde1` feature includes implementations of `Serialize` and `Deserialize` 35for the included RNGs. 36 37## License 38 39`rand_pcg` is distributed under the terms of both the MIT license and the 40Apache License (Version 2.0). 41 42See [LICENSE-APACHE](LICENSE-APACHE) and [LICENSE-MIT](LICENSE-MIT), and 43[COPYRIGHT](COPYRIGHT) for details. 44