# 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.72" name = "xaes-256-gcm" version = "0.0.1-pre.0" authors = ["RustCrypto Developers"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Pure Rust implementation of the XAES-256-GCM extended-nonce Authenticated Encryption with Associated Data (AEAD). """ documentation = "https://docs.rs/xaes-256-gcm" readme = "README.md" keywords = [ "aead", "aes", "xaes", "encryption", "extended-nonce", ] 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 = "xaes_256_gcm" path = "src/lib.rs" [[test]] name = "xaes256gcm" path = "tests/xaes256gcm.rs" [dependencies.aead] version = "0.6.0-rc.0" default-features = false [dependencies.aes] version = "=0.9.0-pre.1" [dependencies.aes-gcm] version = "=0.11.0-pre.1" features = ["aes"] default-features = false [dependencies.cipher] version = "=0.5.0-pre.6" [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", "aes-gcm/alloc", ] arrayvec = [ "aead/arrayvec", "aes-gcm/arrayvec", ] default = [ "alloc", "getrandom", ] getrandom = [ "aead/getrandom", "aes-gcm/getrandom", "rand_core", ] heapless = [ "aead/heapless", "aes-gcm/heapless", ] rand_core = [ "aead/rand_core", "aes-gcm/rand_core", ] std = [ "aead/std", "aes-gcm/std", "cipher/std", "alloc", ] stream = [ "aead/stream", "aes-gcm/stream", ]