From ca0b3dadf4798059c1a276ac97c6fd360b581271 Mon Sep 17 00:00:00 2001 From: Luna <71612329+0xFE4415@users.noreply.github.com> Date: Thu, 5 Jun 2025 22:26:36 +0200 Subject: [PATCH] ml-dsa: Turn off unsused default features so that no_std works (#989) --- ml-dsa/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ml-dsa/Cargo.toml b/ml-dsa/Cargo.toml index 082540a..ba2dd95 100644 --- a/ml-dsa/Cargo.toml +++ b/ml-dsa/Cargo.toml @@ -33,10 +33,10 @@ pkcs8 = ["dep:const-oid", "dep:pkcs8"] [dependencies] hybrid-array = { version = "0.3", features = ["extra-sizes"] } -num-traits = "0.2.19" +num-traits = { version = "0.2.19", default-features = false } rand_core = { version = "0.9", optional = true } sha3 = "0.11.0-rc.0" -signature = "3.0.0-rc.1" +signature = { version = "3.0.0-rc.1", default-features = false } zeroize = { version = "1.8.1", optional = true, default-features = false } const-oid = { version = "0.10", features = ["db"], optional = true }