# 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" name = "aead-gcm-stream" version = "0.3.0" authors = ["Divy Srivastava "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Pure Rust implementaion of AES GCM cipher for data streams" readme = "README.md" license = "MIT" [lib] name = "aead_gcm_stream" path = "src/lib.rs" [[test]] name = "aes128gcm" path = "tests/aes128gcm.rs" [[test]] name = "aes256gcm" path = "tests/aes256gcm.rs" [[test]] name = "common" path = "tests/common.rs" [dependencies.aead] version = "0.5" default-features = false [dependencies.aes] version = "0.8" [dependencies.cipher] version = "0.4" [dependencies.ctr] version = "0.9" [dependencies.ghash] version = "0.5" default-features = false [dependencies.subtle] version = "2" default-features = false [dependencies.zeroize] version = "1" optional = true default-features = false [dev-dependencies.aead] version = "0.5" features = ["dev"] default-features = false [dev-dependencies.hex] version = "0.4" [dev-dependencies.hex-literal] version = "0.3"