blob: 8d7dcd715e8b891ccea79335c6f145a74fb8d48c [file] [log] [blame]
Joel Galenson79677652020-07-07 13:41:03 -07001[package]
2name = "rand_chacha"
Haibo Huangff0a4cf2020-12-15 16:12:10 -08003version = "0.3.0"
Joel Galenson79677652020-07-07 13:41:03 -07004authors = ["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
Joel Galenson79677652020-07-07 13:41:03 -070017[dependencies]
Haibo Huangff0a4cf2020-12-15 16:12:10 -080018rand_core = { path = "../rand_core", version = "0.6.0" }
19ppv-lite86 = { version = "0.2.8", default-features = false, features = ["simd"] }
Joel Galenson79677652020-07-07 13:41:03 -070020
21[features]
Haibo Huangff0a4cf2020-12-15 16:12:10 -080022default = ["std"]
Joel Galenson79677652020-07-07 13:41:03 -070023std = ["ppv-lite86/std"]
24simd = [] # deprecated