merkle_variants/lib.rs
1//! Merkle tree implementations for the `MerkleForge` workspace.
2//!
3//! This crate will provide binary, sparse, and Patricia Merkle trees built on
4//! the shared abstractions from `merkle-core` and hash adapters from
5//! `merkleforge-hash`.
6
7#![deny(missing_docs)]
8#![forbid(unsafe_code)]
9
10pub mod binary;
11pub mod patricia;
12pub mod sparse;
13
14pub use binary::BinaryMerkleTree;