bsize 0.1.0-rc.4

Semantic wrappers and utilities for byte size representations.
Documentation
// Copyright 2026 FastLabs Developers
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

//! `BSize` provides multiple semantic wrappers and utilities for byte size representations.
//!
//! # Features
//!
//! * `#![no_std]`-capable, no dependencies, and uses no heap allocation.
//! * `BSize` wrappers over `u8`, `u16`, `u32`, `u64`, and `usize` for representing byte sizes with
//!   different underlying types.
//! * `FromStr` impl for `BSize`, allowing for parsing string size representations like "1.5KiB" and
//!   "521TiB".
//! * `Display` impl for `BSize`, allowing for formatting byte sizes as human-readable strings in
//!   both binary (e.g., "1.5 MiB") and decimal (e.g., "1.5 MB") styles.
//! * Serde support for binary and human-readable deserializers like JSON.
//!
//! # Examples
//!
//! Construction using the binary or decimal constant helpers.
//!
//! ```
//! use bsize::BSize;
//!
//! assert!(BSize::<usize>::kib(4) > BSize::<usize>::kb(4));
//! ```
//!
//! Display as human-readable string.
//!
//! ```
//! use bsize::BSize;
//!
//! assert_eq!(
//!     "518.0 GiB",
//!     BSize::<usize>::gib(518).display().binary().to_string()
//! );
//! assert_eq!(
//!     "556.2 GB",
//!     BSize::<usize>::gib(518).display().decimal().to_string()
//! );
//! ```
//!
//! Arithmetic operations are supported.
//!
//! ```
//! use bsize::BSize;
//!
//! let plus = BSize::<usize>::mb(1) + BSize::<usize>::kb(100);
//! println!("{plus}");
//!
//! let minus = BSize::<usize>::tb(1) - BSize::<usize>::gb(4);
//! assert_eq!(BSize::<usize>::gb(996), minus);
//! ```
//!
//! Arithmetic operations over the underlying types are supported.
//!
//!```
//! use bsize::BSize;
//!
//! let size = BSize::<usize>::mb(1);
//! let size = size.with(|b| b * 4); // 4x scale
//! println!("{size}");
//! ```

#![cfg_attr(docsrs, feature(doc_cfg))]
#![deny(missing_docs)]
#![no_std]

mod display;
mod ops;
mod parse;
#[cfg(feature = "serde")]
mod serde;
mod types;
mod unsigned;

pub use self::display::Display;
pub use self::parse::ParseError;
pub use self::types::BSize;
pub use self::unsigned::Unsigned;