openvm_circuit/utils/mod.rs
1#[cfg(any(test, feature = "test-utils"))]
2mod stark_utils;
3#[cfg(any(test, feature = "test-utils"))]
4mod test_utils;
5
6pub use openvm_circuit_primitives::utils::next_power_of_two_or_zero;
7#[cfg(any(test, feature = "test-utils"))]
8pub use stark_utils::*;
9#[cfg(any(test, feature = "test-utils"))]
10pub use test_utils::*;