//! This library provides modular components to build and verify binary Merkle trees //! with pluggable hash functions. pub mod hasher; pub mod merkletree; pub mod node; pub mod proof;