aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2025-09-04 21:47:55 +0200
committerDaniel Schadt <kingdread@gmx.de>2025-09-04 21:47:55 +0200
commit4b83bfcad25c8d8e36fe210a76faa5797f9c5aaf (patch)
tree7d7045099a4e977e467a4e28581f620219746474 /Cargo.toml
parent7d8c9ab2be2e72038692a96b10427ab6ed914259 (diff)
downloadzears-4b83bfcad25c8d8e36fe210a76faa5797f9c5aaf.tar.gz
zears-4b83bfcad25c8d8e36fe210a76faa5797f9c5aaf.tar.bz2
zears-4b83bfcad25c8d8e36fe210a76faa5797f9c5aaf.zip
add benchmarks for primitives
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml6
1 files changed, 6 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 237972e..2bb1e9e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -13,6 +13,7 @@ categories = ["algorithms", "cryptography"]
default = ["std"]
simd = []
std = ["constant_time_eq/std", "blake2/std"]
+primitives = []
[dependencies]
aes = { version = "0.8.4", features = ["hazmat"] }
@@ -27,3 +28,8 @@ criterion = "0.5.1"
[[bench]]
name = "zears"
harness = false
+
+[[bench]]
+name = "primitives"
+required-features = ["primitives"]
+harness = false