blob: 78a29b0e11f84ddbad77f35c36eb7ec4546b6612 [file] [log] [blame]
Joel Galenson66036a82020-07-07 13:29:38 -07001# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies
7#
8# If you believe there's an error in this file please file an
9# issue against the rust-lang/cargo repository. If you're
10# editing this file be aware that the upstream Cargo.toml
11# will likely look very different (and much more reasonable)
12
13[package]
14edition = "2018"
15name = "rand"
16version = "0.7.3"
17authors = ["The Rand Project Developers", "The Rust Project Developers"]
18exclude = ["/utils/*", "/.travis.yml", "/appveyor.yml", ".gitignore"]
19autobenches = true
20description = "Random number generators and other randomness functionality.\n"
21homepage = "https://crates.io/crates/rand"
22documentation = "https://rust-random.github.io/rand/"
23readme = "README.md"
24keywords = ["random", "rng"]
25categories = ["algorithms", "no-std"]
26license = "MIT OR Apache-2.0"
27repository = "https://github.com/rust-random/rand"
28[package.metadata.docs.rs]
29all-features = true
30[dependencies.getrandom_package]
31version = "0.1.1"
32optional = true
33package = "getrandom"
34
35[dependencies.log]
36version = "0.4.4"
37optional = true
38
39[dependencies.packed_simd]
40version = "0.3"
41features = ["into_bits"]
42optional = true
43
44[dependencies.rand_core]
45version = "0.5.1"
46
47[dependencies.rand_pcg]
48version = "0.2"
49optional = true
50[dev-dependencies.rand_hc]
51version = "0.2"
52
53[dev-dependencies.rand_pcg]
54version = "0.2"
55
56[features]
57alloc = ["rand_core/alloc"]
58default = ["std"]
59getrandom = ["getrandom_package", "rand_core/getrandom"]
60nightly = ["simd_support"]
61serde1 = []
62simd_support = ["packed_simd"]
63small_rng = ["rand_pcg"]
64std = ["rand_core/std", "rand_chacha/std", "alloc", "getrandom", "libc"]
65stdweb = ["getrandom_package/stdweb"]
66wasm-bindgen = ["getrandom_package/wasm-bindgen"]
67[target."cfg(not(target_os = \"emscripten\"))".dependencies.rand_chacha]
68version = "0.2.1"
69default-features = false
70[target."cfg(target_os = \"emscripten\")".dependencies.rand_hc]
71version = "0.2"
72[target."cfg(unix)".dependencies.libc]
73version = "0.2.22"
74optional = true
75default-features = false
76[badges.appveyor]
77repository = "rust-random/rand"
78
79[badges.travis-ci]
80repository = "rust-random/rand"