pretty-bytes-typed 0.2.0

Strongly-typed prettified byte values
Documentation
#![warn(clippy::pedantic, clippy::nursery, rust_2018_idioms)]
#![allow(
    // Values are too small for truncation or wrap
    clippy::cast_possible_truncation,
    clippy::cast_possible_wrap,
    // Sign is already checked and converted to positive
    clippy::cast_sign_loss
)]

//! A simple, no-dependencies crate for converting a number of bytes into a strongly-typed (stack-allocated) representation of the "prettified" version of those bytes.
//!
//! Compatible with `serde` when the `serde` feature is enabled.

mod binary;
mod decimal;
mod util;

pub use binary::*;
pub use decimal::*;