# 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" name = "isap-aead" version = "0.2.2" authors = ["Sebastian Ramacher "] exclude = [ ".github/", ".gitignore", ] description = "Pure Rust implementation of ISAP v2 with Ascon and Keccak" homepage = "https://github.com/sebastinas/isap-aead" readme = "README.md" keywords = [ "AEAD", "ISAP", "encryption", ] categories = [ "cryptography", "no-std", ] license = "MIT" repository = "https://github.com/sebastinas/isap-aead" [[bench]] name = "benches" harness = false required-features = [ "default", "std", ] [dependencies.aead] version = "0.5" default-features = false [dependencies.ascon] version = "0.4" optional = true default-features = false [dependencies.keccak] version = "0.1" optional = true [dependencies.subtle] version = "2" [dependencies.zeroize] version = "1.5" features = ["derive"] optional = true default-features = false [dev-dependencies.criterion] version = "0.4" [dev-dependencies.hex] version = "0.4" [dev-dependencies.rand] version = "0.8" features = [ "std_rng", "getrandom", ] default-features = false [dev-dependencies.spectral] version = "0.6" default-features = false [features] alloc = ["aead/alloc"] arrayvec = ["aead/arrayvec"] default = [ "zeroize", "alloc", "ascon", "keccak", ] heapless = ["aead/heapless"] std = [ "aead/std", "alloc", ] stream = ["aead/stream"] zeroize = [ "dep:zeroize", "ascon/zeroize", ]