//! Merkle tree utilities for on-chain state verification.
//!
//! Provides Merkle tree construction, inclusion proofs,
//! and sparse Merkle tree for key-value state spaces.
//!
//! # Architecture
//!
//! - **`tree`**: In-memory Merkle tree construction from leaves (SHA256 + Poseidon2)
//! - **`proof`**: On-chain proof types and verification
//! - **`sparse`**: Sparse Merkle tree for large state spaces (SHA256 + Poseidon2)
//!
//! Trees are computed in-memory; only the root is stored on-chain.
//! Proofs are compact and can be verified on-chain.
//!
//! ## Poseidon2 variants
//!
//! Enable the `hazmat-crypto` feature to use `PoseidonMerkleTree` and
//! `PoseidonSparseMerkleTree` for ZK-friendly proofs (~300 constraints
//! per hash vs ~28,000 for SHA256).
pub use ;
pub use SparseMerkleTree;
pub use ;
pub use PoseidonSparseMerkleTree;
pub use ;