keccak 0.1.1

Pure Rust implementation of the Keccak sponge function including the keccak-f and keccak-p variants
Documentation
[package]
name = "keccak"
version = "0.1.1"
description = """
Pure Rust implementation of the Keccak sponge function including the keccak-f
and keccak-p variants
"""
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
documentation = "https://docs.rs/keccak"
repository = "https://github.com/RustCrypto/sponges/tree/master/keccak"
keywords = ["crypto", "sponge", "keccak", "keccak-f", "keccak-p"]
categories = ["cryptography", "no-std"]
readme = "README.md"

[dependencies]
packed_simd = { version = "0.3.7", package = "packed_simd_2", optional = true }

[features]
no_unroll = []
simd = ["packed_simd"]