aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorJoel Galenson <jgalenson@google.com>2020-07-07 13:41:03 -0700
committerJoel Galenson <jgalenson@google.com>2020-07-07 13:41:03 -0700
commit79677650b968ec08af57025ffa9332d8506e6087 (patch)
treef4845a32d698c5a1594c672f285fda0846b2da70 /Cargo.toml.orig
parentd531c9f9f6f3da2bf50cb42c2dcd8a076ca5e677 (diff)
downloadrand_chacha-79677650b968ec08af57025ffa9332d8506e6087.tar.gz
Import rand_chacha-0.2.2
Change-Id: Ib26dd3e44313754c040f56665de1760fd2390ec1
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig28
1 files changed, 28 insertions, 0 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
new file mode 100644
index 0000000..601fef9
--- /dev/null
+++ b/Cargo.toml.orig
@@ -0,0 +1,28 @@
+[package]
+name = "rand_chacha"
+version = "0.2.2"
+authors = ["The Rand Project Developers", "The Rust Project Developers", "The CryptoCorrosion Contributors"]
+license = "MIT OR Apache-2.0"
+readme = "README.md"
+repository = "https://github.com/rust-random/rand"
+documentation = "https://rust-random.github.io/rand/rand_chacha/"
+homepage = "https://crates.io/crates/rand_chacha"
+description = """
+ChaCha random number generator
+"""
+keywords = ["random", "rng", "chacha"]
+categories = ["algorithms", "no-std"]
+edition = "2018"
+
+[badges]
+travis-ci = { repository = "rust-random/rand" }
+appveyor = { repository = "rust-random/rand" }
+
+[dependencies]
+rand_core = { path = "../rand_core", version = "0.5" }
+ppv-lite86 = { version = "0.2.6", default-features = false, features = ["simd"] }
+
+[features]
+default = ["std", "simd"]
+std = ["ppv-lite86/std"]
+simd = [] # deprecated