1[package] 2name = "rand_chacha" 3version = "0.3.1" 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://docs.rs/rand_chacha" 9homepage = "https://rust-random.github.io/book" 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"] } 20serde = { version = "1.0", features = ["derive"], optional = true } 21 22[dev-dependencies] 23# Only to test serde1 24serde_json = "1.0" 25 26[features] 27default = ["std"] 28std = ["ppv-lite86/std"] 29simd = [] # deprecated 30serde1 = ["serde"] 31