From 3bd48974f37b03941d68f49e8fb0a33b0228c4ed Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sun, 14 Sep 2025 08:55:40 -0400 Subject: [PATCH] Add missing `alloc` feature to `multiexp`'s use of `zeroize` Fixes building `multiexp` without default features, without separately specifying `zeroize` and adding the `alloc` feature. --- crypto/multiexp/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/multiexp/Cargo.toml b/crypto/multiexp/Cargo.toml index fcf32f85..f9f46e65 100644 --- a/crypto/multiexp/Cargo.toml +++ b/crypto/multiexp/Cargo.toml @@ -21,7 +21,7 @@ rustversion = "1" std-shims = { path = "../../common/std-shims", version = "^0.1.1", default-features = false } -zeroize = { version = "^1.5", default-features = false, features = ["zeroize_derive"] } +zeroize = { version = "^1.5", default-features = false, features = ["zeroize_derive", "alloc"] } ff = { version = "0.13", default-features = false, features = ["bits"] } group = { version = "0.13", default-features = false }