1//! Halo2 prototype integration (feature-gated by `future_snark`). 2 3pub mod circuit; 4pub mod constants; 5pub mod gadgets; 6pub mod hash; 7pub mod off_circuit; 8pub mod types; 9 10#[cfg(test)] 11pub(crate) mod golden;