fuel_merkle/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2#![allow(clippy::bool_assert_comparison, clippy::identity_op)]
3#![deny(unused_crate_dependencies)]
4#![deny(
5    clippy::arithmetic_side_effects,
6    clippy::cast_sign_loss,
7    clippy::cast_possible_truncation,
8    clippy::cast_possible_wrap,
9    clippy::string_slice
10)]
11
12#[cfg_attr(test, macro_use)]
13extern crate alloc;
14
15pub mod binary;
16pub mod common;
17pub mod sparse;
18pub mod storage;
19
20#[cfg(test)]
21mod tests;