merkle-variants 0.2.1

Binary, sparse, and Patricia Merkle tree implementations for MerkleForge
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Merkle tree implementations for the `MerkleForge` workspace.
//!
//! This crate will provide binary, sparse, and Patricia Merkle trees built on
//! the shared abstractions from `merkle-core` and hash adapters from
//! `merkleforge-hash`.

#![deny(missing_docs)]
#![forbid(unsafe_code)]

pub mod binary;
pub mod patricia;
pub mod sparse;

pub use binary::BinaryMerkleTree;