[package]
edition = "2021"
name = "cuaimacrypt"
version = "1.0.0"
authors = ["Julian Bolivar <jbolivarg@bolivartech.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CuaimaCrypt symmetric hybrid cipher engine — block cipher and stream cipher combined"
readme = "README.md"
keywords = [
"cryptography",
"encryption",
"cipher",
"cuaimacrypt",
]
categories = ["cryptography"]
license = "MIT"
repository = "https://github.com/BolivarTech/CuaimaCrypt"
[lib]
name = "cuaimacrypt"
path = "src/lib.rs"
[[test]]
name = "cross_compat"
path = "tests/cross_compat.rs"
[[test]]
name = "debug_divergence"
path = "tests/debug_divergence.rs"
[[test]]
name = "interop_certification"
path = "tests/interop_certification.rs"
[[bench]]
name = "benchmark"
path = "benches/benchmark.rs"
harness = false
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]