# 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.56" name = "deoxys" version = "0.1.0" authors = ["RustCrypto Developers, zer0x64"] description = """ Pure Rust implementation of the Deoxys Authenticated Encryption with Associated Data (AEAD) cipher, including the Deoxys-II variant which was selected by the CAESAR competition as the first choice for in-depth security """ homepage = "https://github.com/RustCrypto" documentation = "https://docs.rs/deoxys" readme = "README.md" keywords = [ "aead", "deoxys", "deoxys-i", "deoxys-ii", ] categories = [ "cryptography", "no-std", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/RustCrypto/AEADs/tree/master/deoxys" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [dependencies.aead] version = "0.5" default-features = false [dependencies.aes] version = "0.8" features = ["hazmat"] default-features = false [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 [dev-dependencies.hex-literal] version = "0.3" [features] alloc = ["aead/alloc"] default = [ "alloc", "getrandom", ] getrandom = ["aead/getrandom"] heapless = ["aead/heapless"] std = [ "aead/std", "alloc", ] stream = ["aead/stream"]