# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.81" name = "aes-gcm" version = "0.11.0-pre.2" authors = ["RustCrypto Developers"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Pure Rust implementation of the AES-GCM (Galois/Counter Mode) Authenticated Encryption with Associated Data (AEAD) Cipher with optional architecture-specific hardware acceleration """ documentation = "https://docs.rs/aes-gcm" readme = "README.md" keywords = [ "aead", "aes", "encryption", "gcm", "ghash", ] categories = [ "cryptography", "no-std", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/RustCrypto/AEADs" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "aes_gcm" path = "src/lib.rs" [[test]] name = "aes128gcm" path = "tests/aes128gcm.rs" [[test]] name = "aes256gcm" path = "tests/aes256gcm.rs" [[test]] name = "other_ivlen" path = "tests/other_ivlen.rs" [dependencies.aead] version = "0.6.0-rc.0" default-features = false [dependencies.aes] version = "=0.9.0-pre.2" optional = true [dependencies.cipher] version = "=0.5.0-pre.7" [dependencies.ctr] version = "0.10.0-pre.2" [dependencies.ghash] version = "0.6.0-rc.0" default-features = false [dependencies.subtle] version = "2" default-features = false [dependencies.zeroize] version = "1" optional = true default-features = false [dev-dependencies.aead] version = "0.6.0-rc.0" features = ["dev"] default-features = false [dev-dependencies.hex-literal] version = "0.4" [features] alloc = ["aead/alloc"] arrayvec = ["aead/arrayvec"] bytes = ["aead/bytes"] default = [ "aes", "alloc", "getrandom", ] getrandom = [ "aead/getrandom", "rand_core", ] heapless = ["aead/heapless"] rand_core = ["aead/rand_core"] std = [ "aead/std", "cipher/std", "alloc", ] stream = ["aead/stream"]