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