94 lines
1.9 KiB
TOML
94 lines
1.9 KiB
TOML
# 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 believe there's an error in this file please file an
|
|
# issue against the rust-lang/cargo repository. If you're
|
|
# editing this file be aware that the upstream Cargo.toml
|
|
# will likely look very different (and much more reasonable)
|
|
|
|
[package]
|
|
edition = "2018"
|
|
name = "tiny-keccak"
|
|
version = "2.0.2"
|
|
authors = ["debris <marek.kotewicz@gmail.com>"]
|
|
description = "An implementation of Keccak derived functions."
|
|
homepage = "https://github.com/debris/tiny-keccak"
|
|
keywords = ["hash", "sha3", "keccak", "crypto", "kangarootwelve"]
|
|
categories = ["cryptography", "no-std"]
|
|
license = "CC0-1.0"
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
[profile.dev]
|
|
opt-level = 3
|
|
debug = false
|
|
|
|
[profile.test]
|
|
opt-level = 3
|
|
debug = false
|
|
|
|
[[example]]
|
|
name = "sha3"
|
|
required-features = ["sha3"]
|
|
|
|
[[test]]
|
|
name = "keccak"
|
|
required-features = ["keccak"]
|
|
|
|
[[test]]
|
|
name = "cshake"
|
|
required-features = ["cshake"]
|
|
|
|
[[test]]
|
|
name = "tuple_hash"
|
|
required-features = ["tuple_hash"]
|
|
|
|
[[test]]
|
|
name = "kangaroo"
|
|
required-features = ["k12"]
|
|
|
|
[[test]]
|
|
name = "sha3"
|
|
required-features = ["sha3"]
|
|
|
|
[[test]]
|
|
name = "shake"
|
|
required-features = ["shake"]
|
|
|
|
[[test]]
|
|
name = "kmac"
|
|
required-features = ["kmac"]
|
|
|
|
[[test]]
|
|
name = "parallel_hash"
|
|
required-features = ["parallel_hash"]
|
|
|
|
[[bench]]
|
|
name = "keccak"
|
|
required-features = ["keccak"]
|
|
|
|
[[bench]]
|
|
name = "kangaroo"
|
|
required-features = ["k12"]
|
|
[dependencies.crunchy]
|
|
version = "0.2.2"
|
|
|
|
[features]
|
|
cshake = []
|
|
default = []
|
|
fips202 = ["keccak", "shake", "sha3"]
|
|
k12 = []
|
|
keccak = []
|
|
kmac = ["cshake"]
|
|
parallel_hash = ["cshake"]
|
|
sha3 = []
|
|
shake = []
|
|
sp800 = ["cshake", "kmac", "tuple_hash"]
|
|
tuple_hash = ["cshake"]
|
|
[badges.travis-ci]
|
|
branch = "master"
|
|
repository = "debris/tiny-keccak"
|