[package] name = "ascon-hash" version = "0.2.0" description = "Implementation of the Ascon and AsconA hashes and XOFs" authors = [ "Sebastian Ramacher ", "RustCrypto Developers", ] license = "Apache-2.0 OR MIT" readme = "README.md" edition = "2021" documentation = "https://docs.rs/ascon-hash" repository = "https://github.com/RustCrypto/hashes" keywords = ["crypto", "hash", "ascon"] categories = ["cryptography", "no-std"] rust-version = "1.56" [workspace] [dependencies] digest = { version = "0.10", default-features = false, features = ["core-api"] } ascon = "0.3" [dev-dependencies] spectral = { version = "0.6", default-features = false } hex = "0.4" [features] default = ["std"] std = ["digest/std"] [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"]