[package] name = "pmac" version = "0.7.1" # Also update html_root_url in lib.rs when bumping this description = "Generic implementation of Parallelizable Message Authentication Code" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" edition = "2021" rust-version = "1.56" readme = "README.md" documentation = "https://docs.rs/pmac" repository = "https://github.com/RustCrypto/MACs" keywords = ["crypto", "mac", "pmac"] categories = ["cryptography", "no-std"] [dependencies] digest = { version = "0.10.3", features = ["mac"] } cipher = "0.4.2" dbl = "0.3" [dev-dependencies] aes = "0.8" digest = { version = "0.10.3", features = ["dev"] } [features] std = ["digest/std"] zeroize = ["cipher/zeroize"] [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"]