| 1 | [package] |
| 2 | name = "rand_chacha" |
| 3 | version = "0.3.1" |
| 4 | authors = ["The Rand Project Developers" , "The Rust Project Developers" , "The CryptoCorrosion Contributors" ] |
| 5 | license = "MIT OR Apache-2.0" |
| 6 | readme = "README.md" |
| 7 | repository = "https://github.com/rust-random/rand" |
| 8 | documentation = "https://docs.rs/rand_chacha" |
| 9 | homepage = "https://rust-random.github.io/book" |
| 10 | description = "" " |
| 11 | ChaCha random number generator |
| 12 | " "" |
| 13 | keywords = ["random" , "rng" , "chacha" ] |
| 14 | categories = ["algorithms" , "no-std" ] |
| 15 | edition = "2018" |
| 16 | |
| 17 | [dependencies] |
| 18 | rand_core = { path = "../rand_core" , version = "0.6.0" } |
| 19 | ppv-lite86 = { version = "0.2.8" , default-features = false, features = ["simd" ] } |
| 20 | serde = { version = "1.0" , features = ["derive" ], optional = true } |
| 21 | |
| 22 | [dev-dependencies] |
| 23 | # Only to test serde1 |
| 24 | serde_json = "1.0" |
| 25 | |
| 26 | [features] |
| 27 | default = ["std" ] |
| 28 | std = ["ppv-lite86/std" ] |
| 29 | simd = [] # deprecated |
| 30 | serde1 = ["serde" ] |
| 31 | |