rand 0.6.4

Random number generators and other randomness functionality.
[badges.appveyor]
repository = "rust-random/rand"

[badges.travis-ci]
repository = "rust-random/rand"
[build-dependencies.autocfg]
version = "0.1"
[dependencies.log]
optional = true
version = "0.4"

[dependencies.packed_simd]
features = ["into_bits"]
optional = true
version = "0.3"

[dependencies.rand_chacha]
version = "0.1"

[dependencies.rand_core]
default-features = false
version = "0.3"

[dependencies.rand_hc]
version = "0.1"

[dependencies.rand_isaac]
version = "0.1"

[dependencies.rand_os]
optional = true
version = "0.1"

[dependencies.rand_pcg]
version = "0.1"

[dependencies.rand_xorshift]
version = "0.1"
[dev-dependencies.average]
version = "0.9.2"

[dev-dependencies.rand_xoshiro]
version = "0.1"

[features]
alloc = ["rand_core/alloc"]
default = ["std", "rand_os"]
i128_support = []
nightly = ["simd_support"]
serde1 = ["rand_core/serde1", "rand_isaac/serde1", "rand_xorshift/serde1"]
simd_support = ["packed_simd"]
std = ["rand_core/std", "alloc", "rand_os"]
stdweb = ["rand_os/stdweb"]
wasm-bindgen = ["rand_os/wasm-bindgen"]

[package]
authors = ["The Rand Project Developers", "The Rust Project Developers"]
build = "build.rs"
categories = ["algorithms", "no-std"]
description = "Random number generators and other randomness functionality.\n"
documentation = "https://rust-random.github.io/rand"
exclude = ["/utils/*", "/.travis.yml", "/appveyor.yml", ".gitignore"]
homepage = "https://crates.io/crates/rand"
keywords = ["random", "rng"]
license = "MIT/Apache-2.0"
name = "rand"
readme = "README.md"
repository = "https://github.com/rust-random/rand"
version = "0.6.4"
[package.metadata.docs.rs]
all-features = true
[target."cfg(unix)".dependencies.libc]
default-features = false
version = "0.2"
[target."cfg(windows)".dependencies.winapi]
features = ["minwindef", "ntsecapi", "profileapi", "winnt"]
version = "0.3"