From 35ce5a909ee09ae8c3101e69cc57785a21ed7f64 Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Tue, 21 Feb 2023 22:58:27 -0800 Subject: [PATCH] fix: use correct feature name --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 124a412..5560936 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,7 +7,7 @@ pub use witness::WitnessCalculator; pub mod circom; pub use circom::{CircomBuilder, CircomCircuit, CircomConfig, CircomReduction}; -#[cfg(feature = "full")] +#[cfg(feature = "ethereum")] pub mod ethereum; mod zkey;