sponges/keccak/Cargo.toml

26 lines
840 B
TOML
Raw Normal View History

2018-03-21 15:44:29 +03:00
[package]
name = "keccak"
version = "0.2.0-rc.0"
2022-05-24 16:35:18 -06:00
description = """
Pure Rust implementation of the Keccak sponge function including the keccak-f
and keccak-p variants
"""
2018-03-21 15:44:29 +03:00
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
2018-03-21 15:44:29 +03:00
documentation = "https://docs.rs/keccak"
homepage = "https://github.com/RustCrypto/sponges/tree/master/keccak"
repository = "https://github.com/RustCrypto/sponges"
keywords = ["crypto", "sponge", "keccak", "keccak-f", "keccak-p"]
2018-03-21 15:44:29 +03:00
categories = ["cryptography", "no-std"]
readme = "README.md"
edition = "2024"
rust-version = "1.85"
2018-03-21 15:44:29 +03:00
[features]
asm = [] # Use optimized assembly when available (currently only ARMv8)
no_unroll = [] # Do no unroll loops for binary size reduction
2023-05-04 11:12:22 -06:00
simd = [] # Use core::simd (nightly-only)
[target.'cfg(target_arch = "aarch64")'.dependencies]
cpufeatures = "0.2"