From e6570105d898985e0eb7dab0b0c482b111c30a5f Mon Sep 17 00:00:00 2001 From: Danny Willems Date: Tue, 2 Dec 2025 11:14:46 -0300 Subject: [PATCH] fix(curves): allow asm cfg from ark-ff derive macros --- curves/Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/curves/Cargo.toml b/curves/Cargo.toml index 3c06d1e8f41..269059113e8 100644 --- a/curves/Cargo.toml +++ b/curves/Cargo.toml @@ -9,6 +9,11 @@ readme = "../README.md" edition = "2021" license = "Apache-2.0" +[lints.rust] +unexpected_cfgs = { level = "warn", check-cfg = [ + "cfg(feature, values(\"asm\"))", +] } + [dependencies] ark-bn254.workspace = true ark-ec.workspace = true