isap-aead 0.3.0

Pure Rust implementation of ISAP v2 with Ascon and Keccak
# 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 = "2024"
rust-version = "1.85"
name = "isap-aead"
version = "0.3.0"
authors = ["Sebastian Ramacher <sebastian.ramacher@ait.ac.at>"]
build = false
exclude = [
    ".github/",
    ".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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"

[features]
alloc = ["aead/alloc"]
arrayvec = ["aead/arrayvec"]
ascon = ["dep:ascon-core"]
default = [
    "zeroize",
    "alloc",
    "ascon",
    "keccak",
]
getrandom = ["aead/getrandom"]
keccak = ["dep:keccak"]
rand_core = ["aead/rand_core"]
std = ["alloc"]
zeroize = [
    "dep:zeroize",
    "ascon-core/zeroize",
]

[lib]
name = "isap_aead"
path = "src/lib.rs"

[[test]]
name = "kats_test"
path = "tests/kats_test.rs"

[dependencies.aead]
version = "0.6"
default-features = false

[dependencies.ascon-core]
version = "0.5.1"
features = [
    "permute_1",
    "permute_6",
]
optional = true
default-features = false

[dependencies.keccak]
version = "0.2"
optional = true

[dependencies.subtle]
version = "2"

[dependencies.zeroize]
version = "1.5"
features = ["derive"]
optional = true
default-features = false

[dev-dependencies.hex]
version = "0.4"

[dev-dependencies.spectral]
version = "0.6"
default-features = false