# Merkle Tree Package This Merkle Tree package provides a robust implementation for creating and verifying Merkle trees. Utilizing the Keccak hashing algorithm, this package is ideal for applications that require data integrity verification through cryptographic means, such as blockchains and other distributed ledger technologies. ## Features - Generate Merkle trees from arbitrary data inputs. - Verify the integrity of data using Merkle proofs. - Utilize Keccak hashing for maximum security. - Lightweight and efficient, suitable for high-performance applications. ## Getting Started ### Prerequisites - Rust 1.55 or newer ### Installation Clone the repository and build the project: ```bash git clone git@github.com:Fiiii/merkle_tree.git cd merkle_tree cargo build --release ```