1 2 3 4 5 6 7 8 9 10
#![cfg_attr(not(feature = "std"), no_std)]
#![allow(clippy::bool_assert_comparison, clippy::identity_op)]
#[cfg_attr(test, macro_use)]
extern crate alloc;
pub mod binary;
pub mod common;
pub mod sparse;
pub mod sum;
1 2 3 4 5 6 7 8 9 10
#![cfg_attr(not(feature = "std"), no_std)]
#![allow(clippy::bool_assert_comparison, clippy::identity_op)]
#[cfg_attr(test, macro_use)]
extern crate alloc;
pub mod binary;
pub mod common;
pub mod sparse;
pub mod sum;