proof_of_sql/sql/evm_proof_plan/
mod.rs

1mod error;
2pub(crate) use error::{EVMProofPlanError, EVMProofPlanResult};
3mod exprs;
4pub(crate) use exprs::EVMDynProofExpr;
5mod plans;
6mod proof_plan;
7#[cfg(test)]
8mod tests;
9
10pub use proof_plan::EVMProofPlan;
11
12#[cfg(all(test, feature = "hyperkzg_proof"))]
13mod evm_tests;