aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2025-08-16 21:03:12 +0200
committerDaniel Schadt <kingdread@gmx.de>2025-08-16 21:03:12 +0200
commitdf8f33baedc7ed0fc14d2041736cb8695a5e5af4 (patch)
tree2c295edfda6e3cb9c61b2c809c876d7dbe1b5581
parent48c6cebb87b23eb3f34b59da0dcced9f4d4af1c2 (diff)
downloadzears-df8f33baedc7ed0fc14d2041736cb8695a5e5af4.tar.gz
zears-df8f33baedc7ed0fc14d2041736cb8695a5e5af4.tar.bz2
zears-df8f33baedc7ed0fc14d2041736cb8695a5e5af4.zip
disable std feature for dependencies
makes little sense to be no_std if the dependencies use std
-rw-r--r--Cargo.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index ea585b5..237972e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -12,12 +12,12 @@ categories = ["algorithms", "cryptography"]
[features]
default = ["std"]
simd = []
-std = []
+std = ["constant_time_eq/std", "blake2/std"]
[dependencies]
aes = { version = "0.8.4", features = ["hazmat"] }
-blake2 = "0.10.6"
-constant_time_eq = "0.4.2"
+blake2 = { version = "0.10.6", default-features = false }
+constant_time_eq = { version = "0.4.2", default-features = false }
cpufeatures = "0.2.17"
[dev-dependencies]