[package] name = "tink-aead" version = "0.2.5" authors = ["David Drysdale "] edition = "2018" license = "Apache-2.0" description = "AEAD functionality for Rust port of Google's Tink cryptography library" repository = "https://github.com/project-oak/tink-rust" documentation = "https://docs.rs/tink-aead" readme = "README.md" keywords = ["cryptography", "tink", "aead"] categories = ["cryptography"] [dependencies] # Need the `std` feature for Error type conversion aead = { version = "^0.5.1", features = ["std"] } aes = "^0.8.2" aes-gcm = "^0.10.1" aes-gcm-siv = "^0.11.1" chacha20poly1305 = "^0.10" ctr = "^0.9.2" generic-array = "^0.14.6" tink-core = "^0.2" tink-mac = "^0.2" tink-proto = "^0.2"