1# 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.8.3" 17authors = ["The Rand Project Developers", "The Rust Project Developers"] 18include = ["src/", "LICENSE-*", "README.md", "CHANGELOG.md", "COPYRIGHT"] 19autobenches = true 20description = "Random number generators and other randomness functionality.\n" 21homepage = "https://rust-random.github.io/book" 22documentation = "https://docs.rs/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 30rustdoc-args = ["--cfg", "doc_cfg"] 31 32[package.metadata.playground] 33features = ["small_rng", "serde1"] 34[dependencies.log] 35version = "0.4.4" 36optional = true 37 38[dependencies.packed_simd] 39version = "0.3.4" 40features = ["into_bits"] 41optional = true 42package = "packed_simd_2" 43 44[dependencies.rand_core] 45version = "0.6.0" 46 47[dependencies.serde] 48version = "1.0.103" 49features = ["derive"] 50optional = true 51[dev-dependencies.bincode] 52version = "1.2.1" 53 54[dev-dependencies.rand_hc] 55version = "0.3.0" 56 57[dev-dependencies.rand_pcg] 58version = "0.3.0" 59 60[features] 61alloc = ["rand_core/alloc"] 62default = ["std", "std_rng"] 63getrandom = ["rand_core/getrandom"] 64nightly = [] 65serde1 = ["serde"] 66simd_support = ["packed_simd"] 67small_rng = [] 68std = ["rand_core/std", "rand_chacha/std", "alloc", "getrandom", "libc"] 69std_rng = ["rand_chacha", "rand_hc"] 70[target."cfg(not(target_os = \"emscripten\"))".dependencies.rand_chacha] 71version = "0.3.0" 72optional = true 73default-features = false 74[target."cfg(target_os = \"emscripten\")".dependencies.rand_hc] 75version = "0.3.0" 76optional = true 77[target."cfg(unix)".dependencies.libc] 78version = "0.2.22" 79optional = true 80default-features = false 81