diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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 |