2023-02-11 10:34:01 -07:00
|
|
|
[package]
|
|
|
|
|
name = "ascon"
|
2023-07-27 22:09:49 +02:00
|
|
|
version = "0.4.0"
|
2023-03-12 16:25:14 +01:00
|
|
|
description = "Pure rust implementation of the Ascon permutation"
|
|
|
|
|
authors = [
|
|
|
|
|
"Sebastian Ramacher <sebastian.ramacher@ait.ac.at>",
|
|
|
|
|
"RustCrypto Developers",
|
|
|
|
|
]
|
2023-02-11 10:34:01 -07:00
|
|
|
license = "Apache-2.0 OR MIT"
|
2023-02-11 11:54:59 -07:00
|
|
|
documentation = "https://docs.rs/ascon"
|
|
|
|
|
repository = "https://github.com/RustCrypto/sponges/tree/master/ascon"
|
2023-03-12 16:25:14 +01:00
|
|
|
keywords = ["Ascon", "crypto", "permutation"]
|
2023-02-11 11:54:59 -07:00
|
|
|
categories = ["cryptography", "no-std"]
|
|
|
|
|
readme = "README.md"
|
2023-02-25 17:36:18 -07:00
|
|
|
edition = "2021"
|
2023-03-19 16:23:24 +01:00
|
|
|
rust-version = "1.56"
|
2023-02-25 20:48:50 -07:00
|
|
|
|
2023-05-23 15:10:15 +02:00
|
|
|
[dependencies]
|
|
|
|
|
zeroize = { version = "1.6.0", default-features = false, optional=true }
|
|
|
|
|
|
2023-02-11 12:28:02 -07:00
|
|
|
[features]
|
2023-03-12 16:25:14 +01:00
|
|
|
no_unroll = [] # Do not unroll loops for binary size reduction
|
2023-02-11 12:28:02 -07:00
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|