solana/merkle-tree/src/lib.rs

9 lines
157 B
Rust
Raw Normal View History

#![allow(clippy::integer_arithmetic)]
#[cfg(target_arch = "bpf")]
#[macro_use]
extern crate matches;
pub mod merkle_tree;
pub use merkle_tree::MerkleTree;