1#![cfg_attr(not(feature = "std"), no_std)]
2#![doc = include_str!("../README.md")]
3
4#[cfg(feature = "no_std")]
5compile_error!("Please use `cfg(not(feature = \"std\"))` instead of `cfg(feature = \"no_std\")`.");
6
7mod buffer;
8mod duration;
9mod duration_format;
10#[cfg(feature = "serde")]
11mod duration_serde;
12pub mod iec;
13pub mod si;
14mod size;
15mod size_format;
16#[cfg(feature = "serde")]
17mod size_serde;
18
19pub use self::buffer::*;
20pub use self::duration::*;
21pub use self::duration_format::*;
22pub use self::size::*;
23pub use self::size_format::*;