# 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.65" name = "aead" version = "0.6.0-rc.0" authors = ["RustCrypto Developers"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Traits for Authenticated Encryption with Associated Data (AEAD) algorithms, such as AES-GCM as ChaCha20Poly1305, which provide a high-level API """ documentation = "https://docs.rs/aead" readme = "README.md" keywords = [ "crypto", "encryption", ] categories = [ "cryptography", "no-std", ] license = "MIT OR Apache-2.0" repository = "https://github.com/RustCrypto/traits" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "aead" path = "src/lib.rs" [dependencies.arrayvec] version = "0.7" optional = true default-features = false [dependencies.blobby] version = "0.3" optional = true [dependencies.bytes] version = "1" optional = true default-features = false [dependencies.crypto-common] version = "0.2.0-rc.0" [dependencies.heapless] version = "0.8" optional = true default-features = false [features] alloc = [] default = ["rand_core"] dev = ["blobby"] getrandom = ["crypto-common/getrandom"] rand_core = ["crypto-common/rand_core"] std = [ "alloc", "crypto-common/std", ] stream = []