whirlpool 0.10.4

Whirlpool hash function
Documentation
[package]
name = "whirlpool"
version = "0.10.4"
description = "Whirlpool hash function"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
edition = "2018"
documentation = "https://docs.rs/whirlpool"
repository = "https://github.com/RustCrypto/hashes"
keywords = ["crypto", "whirlpool", "hash", "digest"]
categories = ["cryptography", "no-std"]

[dependencies]
digest = "0.10.3"

[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies]
whirlpool-asm = { version = "0.6", optional = true}

[dev-dependencies]
digest = { version = "0.10.3", features = ["dev"] }
hex-literal = "0.2.2"

[features]
default = ["std"]
std = ["digest/std"]
asm = ["whirlpool-asm"] # WARNING: this feature SHOULD NOT be enabled by library crates