mirror of
https://github.com/logos-blockchain/sponges.git
synced 2026-07-30 02:23:31 +00:00
19 lines
506 B
TOML
19 lines
506 B
TOML
[package]
|
|
name = "keccak"
|
|
version = "0.1.1"
|
|
authors = ["RustCrypto Developers"]
|
|
license = "CC0-1.0"
|
|
description = "Keccak sponge function"
|
|
documentation = "https://docs.rs/keccak"
|
|
repository = "https://github.com/RustCrypto/sponges"
|
|
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"]
|