sponges/ascon/Cargo.toml
Tony Arcieri 0d9bf82ee5
Add workspace-level clippy config (#100)
Uses the same config from other repos (e.g. `traits`, `utils`)
2026-02-12 15:01:09 -07:00

30 lines
805 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
[lints]
workspace = true
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]