From a5a81cc3b2acf1f36ed06415cb48fc88c5ad11e8 Mon Sep 17 00:00:00 2001 From: 0xFE4415 <259395@student.pwr.edu.pl> Date: Thu, 5 Jun 2025 21:13:42 +0200 Subject: [PATCH] ml-dsa: Turn off unsused default features so that no_std works --- 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 082540a5..ba2dd951 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 }