mirror of
https://github.com/logos-blockchain/sponges.git
synced 2026-07-30 02:23:31 +00:00
26 lines
727 B
TOML
26 lines
727 B
TOML
[package]
|
|
name = "ascon"
|
|
version = "0.5.0-pre"
|
|
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"
|
|
repository = "https://github.com/RustCrypto/sponges/tree/master/ascon"
|
|
keywords = ["Ascon", "crypto", "permutation"]
|
|
categories = ["cryptography", "no-std"]
|
|
readme = "README.md"
|
|
edition = "2021"
|
|
rust-version = "1.60"
|
|
|
|
[dependencies]
|
|
zeroize = { version = "1.6.0", default-features = false, optional=true }
|
|
|
|
[features]
|
|
no_unroll = [] # Do not unroll loops for binary size reduction
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|