[package] name = "crypto-mac" description = "Trait for Message Authentication Code (MAC) algorithms" version = "0.11.1" # Also update html_root_url in lib.rs when bumping this authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" readme = "README.md" edition = "2018" documentation = "https://docs.rs/crypto-mac" repository = "https://github.com/RustCrypto/traits" keywords = ["crypto", "mac"] categories = ["cryptography", "no-std"] [dependencies] generic-array = "0.14" cipher = { version = "0.3", optional = true, path = "../cipher" } subtle = { version = "=2.4", default-features = false } blobby = { version = "0.3", optional = true } [features] dev = ["blobby"] std = [] [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"]