1[package] 2name = "rand_chacha" 3version = "0.3.0" 4authors = ["The Rand Project Developers", "The Rust Project Developers", "The CryptoCorrosion Contributors"] 5license = "MIT OR Apache-2.0" 6readme = "README.md" 7repository = "https://github.com/rust-random/rand" 8documentation = "https://rust-random.github.io/rand/rand_chacha/" 9homepage = "https://crates.io/crates/rand_chacha" 10description = """ 11ChaCha random number generator 12""" 13keywords = ["random", "rng", "chacha"] 14categories = ["algorithms", "no-std"] 15edition = "2018" 16 17[dependencies] 18rand_core = { path = "../rand_core", version = "0.6.0" } 19ppv-lite86 = { version = "0.2.8", default-features = false, features = ["simd"] } 20 21[features] 22default = ["std"] 23std = ["ppv-lite86/std"] 24simd = [] # deprecated 25