1 2 3 4 5 6 7 8 9 10 11
#![allow(clippy::op_ref)] #![cfg_attr(not(feature = "std"), no_std)] #[macro_use] extern crate alloc; pub mod commitments; #[cfg(feature = "std")] pub mod errors; pub mod fiat_shamir; pub mod hash; pub mod merkle_tree;