# 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 = "2018" name = "aead-io" version = "0.2.0" authors = ["Julian Popescu "] description = "A wrapper around Write/Read interfaces with AEAD" homepage = "https://github.com/jpopesculian/aead-io" documentation = "https://docs.rs/aead-io/" readme = "README.md" keywords = [ "aead", "io", "encryption", "decryption", "cryptography", ] categories = [ "cryptography", "no-std", ] license = "MIT OR Apache-2.0" repository = "https://github.com/jpopesculian/aead-io" resolver = "2" [dependencies.aead] version = "0.5" features = ["stream"] default-features = false [dependencies.arrayvec] version = "0.7" optional = true default-features = false [dev-dependencies.aead] version = "0.5" features = ["alloc"] default-features = false [dev-dependencies.chacha20poly1305] version = "0.10" [dev-dependencies.rand] version = "0.8" [dev-dependencies.tempfile] version = "3.3" [features] alloc = ["aead/alloc"] array-buffer = ["arrayvec"] default = [ "std", "array-buffer", ] std = [ "alloc", "aead/std", "arrayvec/std", ]