Files
cli/vendor/rand_chacha/Cargo.toml

82 lines
1.7 KiB
TOML
Raw Normal View History

# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2021"
rust-version = "1.63"
name = "rand_chacha"
version = "0.9.0"
authors = [
"The Rand Project Developers",
"The Rust Project Developers",
"The CryptoCorrosion Contributors",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
ChaCha random number generator
"""
homepage = "https://rust-random.github.io/book"
documentation = "https://docs.rs/rand_chacha"
readme = "README.md"
keywords = [
"random",
"rng",
"chacha",
]
categories = [
"algorithms",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-random/rand"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--generate-link-to-definition"]
[features]
default = ["std"]
os_rng = ["rand_core/os_rng"]
serde = ["dep:serde"]
std = [
"ppv-lite86/std",
"rand_core/std",
]
[lib]
name = "rand_chacha"
path = "src/lib.rs"
[dependencies.ppv-lite86]
version = "0.2.14"
features = ["simd"]
default-features = false
[dependencies.rand_core]
version = "0.9.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dev-dependencies.rand_core]
version = "0.9.0"
features = ["os_rng"]
[dev-dependencies.serde_json]
version = "1.0"