1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#![no_std] #[cfg_attr(test, macro_use)] extern crate alloc; #[cfg(feature = "std")] extern crate std; mod local_batch_prover; pub use local_batch_prover::LocalBatchProver; pub mod errors; #[cfg(test)] pub mod testing; #[cfg(test)] mod tests;