# 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.81" name = "aes-siv" version = "0.8.0-pre.2" authors = ["RustCrypto Developers"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Pure Rust implementation of the AES-SIV Misuse-Resistant Authenticated Encryption Cipher (RFC 5297) with optional architecture-specific hardware acceleration """ documentation = "https://docs.rs/aes-siv" readme = "README.md" keywords = [ "aead", "aes", "encryption", "siv", ] categories = [ "cryptography", "no-std", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/RustCrypto/AEADs" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "aes_siv" path = "src/lib.rs" [[test]] name = "aead" path = "tests/aead.rs" [[test]] name = "siv" path = "tests/siv.rs" [dependencies.aead] version = "0.6.0-rc.0" [dependencies.aes] version = "=0.9.0-pre.2" [dependencies.cipher] version = "=0.5.0-pre.7" [dependencies.cmac] version = "0.8.0-pre.2" [dependencies.ctr] version = "0.10.0-pre.2" [dependencies.dbl] version = "0.4.0-rc.0" [dependencies.digest] version = "=0.11.0-pre.9" features = ["mac"] [dependencies.pmac] version = "0.8.0-pre.2" optional = true [dependencies.zeroize] version = "1" default-features = false [dev-dependencies.blobby] version = "0.3" [dev-dependencies.hex-literal] version = "0.4" [features] alloc = ["aead/alloc"] arrayvec = ["aead/arrayvec"] bytes = ["aead/bytes"] default = [ "alloc", "getrandom", ] getrandom = [ "aead/getrandom", "rand_core", ] heapless = ["aead/heapless"] rand_core = ["aead/rand_core"] std = [ "aead/std", "alloc", ] stream = ["aead/stream"]