summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: aaae31c886fc73e2a110c9d52d7fd96951f44a24 (plain)
1
2
3
4
5
6
7
//! 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;