1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg_attr(not(feature = "std"), no_std)]
#![allow(clippy::bool_assert_comparison, clippy::identity_op)]
#![deny(unused_crate_dependencies)]

#[cfg_attr(test, macro_use)]
extern crate alloc;

pub mod binary;
pub mod common;
pub mod sparse;
pub mod storage;
pub mod sum;

#[cfg(test)]
mod tests;