From df8f33baedc7ed0fc14d2041736cb8695a5e5af4 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Sat, 16 Aug 2025 21:03:12 +0200 Subject: disable std feature for dependencies makes little sense to be no_std if the dependencies use std --- Cargo.toml | 6 +++--- 1 file 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] -- cgit v1.2.3