merkle-tree: Use matches crate when targeting eBPF

This commit is contained in:
Trent Nelson
2021-04-02 19:23:25 -06:00
committed by Trent Nelson
parent ddc0a16cec
commit a44c32694f
3 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,8 @@
#![allow(clippy::integer_arithmetic)]
#[cfg(target_arch = "bpf")]
#[macro_use]
extern crate matches;
pub mod merkle_tree;
pub use merkle_tree::MerkleTree;