aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 9e408d4f33a5a793a7141032ce8602e4dad49752 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "zears"
version = "0.2.0"
edition = "2024"
license = "MIT"
description = "Rust implementation of the AEZ v5 cipher."
readme = "README.md"
repository = "https://codeberg.org/dunj3/zears"
keywords = ["aez", "aezv5", "aead", "encryption", "cipher"]
categories = ["algorithms", "cryptography"]

[features]
simd = []

[dependencies]
aes = { version = "0.8.4", features = ["hazmat"] }
blake2 = "0.10.6"
constant_time_eq = "0.4.2"
cpufeatures = "0.2.17"

[dev-dependencies]
hex = "0.4.3"
criterion = "0.5.1"

[[bench]]
name = "zears"
harness = false