1#![doc(html_root_url = "https://docs.rs/toad-common/0.15.0")]
5#![cfg_attr(all(not(test), feature = "no_std"), no_std)]
7#![cfg_attr(not(test), forbid(missing_debug_implementations, unreachable_pub))]
8#![cfg_attr(not(test), deny(unsafe_code, missing_copy_implementations))]
9#![allow(clippy::unused_unit)]
10#![deny(missing_docs)]
11#![cfg_attr(not(feature = "std"), no_std)]
12
13#[cfg(feature = "alloc")]
14extern crate alloc as std_alloc;
15
16pub mod result;
18pub use result::*;
19
20pub mod hash;
22
23pub mod fns;
25pub use fns::*;
26
27pub mod cursor;
29pub use cursor::*;
30
31pub mod stem;
33pub use stem::*;
34
35pub mod map;
37pub use map::*;
38
39pub mod array;
41pub use array::*;
42
43pub mod writable;
45pub use writable::*;