Fix build of eStark related features. (#2094)

Build with feature `estark-polygon` was broken without `estark-starky`.

Now each work independently of the other.
This commit is contained in:
Lucas Clemente Vella
2024-11-15 11:37:30 +00:00
committed by GitHub
parent e07e405ae0
commit 8ad05b5074
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ halo2 = [
"dep:halo2_solidity_verifier",
]
estark-starky = ["dep:starky"]
estark-polygon = ["dep:pil-stark-prover"]
estark-polygon = ["dep:pil-stark-prover", "dep:starky"]
plonky3 = [
"dep:powdr-plonky3",
"dep:p3-commit",

View File

@@ -1,6 +1,6 @@
#![deny(clippy::print_stdout)]
#[cfg(feature = "estark-starky")]
#[cfg(any(feature = "estark-polygon", feature = "estark-starky"))]
mod estark;
#[cfg(feature = "halo2")]
mod halo2;