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 are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14name = "rand" 15version = "0.8.5" 16authors = ["The Rand Project Developers", "The Rust Project Developers"] 17include = ["src/", "LICENSE-*", "README.md", "CHANGELOG.md", "COPYRIGHT"] 18autobenches = true 19description = "Random number generators and other randomness functionality.\n" 20homepage = "https://rust-random.github.io/book" 21documentation = "https://docs.rs/rand" 22readme = "README.md" 23keywords = ["random", "rng"] 24categories = ["algorithms", "no-std"] 25license = "MIT OR Apache-2.0" 26repository = "https://github.com/rust-random/rand" 27[package.metadata.docs.rs] 28all-features = true 29rustdoc-args = ["--cfg", "doc_cfg"] 30 31[package.metadata.playground] 32features = ["small_rng", "serde1"] 33[dependencies.log] 34version = "0.4.4" 35optional = true 36 37[dependencies.packed_simd] 38version = "0.3.7" 39features = ["into_bits"] 40optional = true 41package = "packed_simd_2" 42 43[dependencies.rand_chacha] 44version = "0.3.0" 45optional = true 46default-features = false 47 48[dependencies.rand_core] 49version = "0.6.0" 50 51[dependencies.serde] 52version = "1.0.103" 53features = ["derive"] 54optional = true 55[dev-dependencies.bincode] 56version = "1.2.1" 57 58[dev-dependencies.rand_pcg] 59version = "0.3.0" 60 61[features] 62alloc = ["rand_core/alloc"] 63default = ["std", "std_rng"] 64getrandom = ["rand_core/getrandom"] 65min_const_gen = [] 66nightly = [] 67serde1 = ["serde", "rand_core/serde1"] 68simd_support = ["packed_simd"] 69small_rng = [] 70std = ["rand_core/std", "rand_chacha/std", "alloc", "getrandom", "libc"] 71std_rng = ["rand_chacha"] 72[target."cfg(unix)".dependencies.libc] 73version = "0.2.22" 74optional = true 75default-features = false 76