human-units 0.5.3

Units serialization and formatting library designed for configuration files and command line arguments
Documentation
#![cfg_attr(not(feature = "std"), no_std)]
#![doc = include_str!("../README.md")]

#[cfg(feature = "no_std")]
compile_error!("Please use `cfg(not(feature = \"std\"))` instead of `cfg(feature = \"no_std\")`.");

mod buffer;
mod compat;
mod duration;
mod duration_format;
#[cfg(feature = "serde")]
mod duration_serde;
mod error;
pub mod iec;
#[doc(hidden)]
pub mod imp;
pub mod si;
mod size;
mod size_format;
#[cfg(feature = "serde")]
mod size_serde;

pub use self::buffer::*;
pub(crate) use self::compat::*;
pub use self::duration::*;
pub use self::duration_format::*;
pub use self::error::*;
pub use self::size::*;
pub use self::size_format::*;