sponges/ascon/Cargo.toml
Tony Arcieri 95a176c25b
Cut new prereleases (#90)
Releases the following:
- `ascon` v0.5.0-rc.0
- `keccak` v0.2.0-rc.0
2025-09-02 20:15:00 -06:00

27 lines
779 B
TOML

[package]
name = "ascon"
version = "0.5.0-rc.0"
description = "Pure Rust implementation of the Ascon permutation"
authors = [
"Sebastian Ramacher <sebastian.ramacher@ait.ac.at>",
"RustCrypto Developers",
]
license = "Apache-2.0 OR MIT"
documentation = "https://docs.rs/ascon"
homepage = "https://github.com/RustCrypto/sponges/tree/master/ascon"
repository = "https://github.com/RustCrypto/sponges"
keywords = ["Ascon", "crypto", "permutation"]
categories = ["cryptography", "no-std"]
readme = "README.md"
edition = "2024"
rust-version = "1.85"
[dependencies]
zeroize = { version = "1.6", default-features = false, optional = true }
[features]
no_unroll = [] # Do not unroll loops for binary size reduction
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]