# 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.60.0" name = "aes256ctr_poly1305aes" version = "0.2.1" authors = ["Alexander Weiss"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Pure Rust implementation of the AES256CTR-Poly1305AES Authenticated Encryption with optional architecture-specific hardware acceleration. """ documentation = "https://docs.rs/aes256ctr-poly1305aes" readme = "README.md" keywords = [ "aead", "aes256ctr", "aes", "poly1305", ] categories = [ "cryptography", "no-std", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/rustic-rs/aes256ctr_poly1305aes" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--document-private-items", "--generate-link-to-definition", ] [lib] name = "aes256ctr_poly1305aes" path = "src/lib.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.poly1305] version = "0.8" [dependencies.subtle] version = "2" default-features = false [dependencies.zeroize] version = "1" default-features = false [dev-dependencies.aead] version = "0.5" features = ["dev"] default-features = false [features] alloc = ["aead/alloc"] default = ["alloc"] heapless = ["aead/heapless"] std = [ "aead/std", "alloc", ] stream = ["aead/stream"]