1 stable release

1.0.0 May 4, 2021

#3 in #humanize

Download history 22104/week @ 2024-01-06 25217/week @ 2024-01-13 27713/week @ 2024-01-20 30260/week @ 2024-01-27 28683/week @ 2024-02-03 28520/week @ 2024-02-10 23900/week @ 2024-02-17 23277/week @ 2024-02-24 29642/week @ 2024-03-02 29926/week @ 2024-03-09 28314/week @ 2024-03-16 25647/week @ 2024-03-23 31035/week @ 2024-03-30 29998/week @ 2024-04-06 30071/week @ 2024-04-13 30119/week @ 2024-04-20

124,639 downloads per month
Used in 21 crates (13 directly)

MIT license

24KB
330 lines

parse-size

Crates.io docs.rs Build status MIT License

parse-size is an accurate, customizable, allocation-free library for parsing byte size into integer.

use parse_size::parse_size;

assert_eq!(parse_size("0.2 MiB"), Ok(209715));
assert_eq!(parse_size("14.2e+8"), Ok(14_2000_0000));

Features

  • Supports both binary and decimal based prefix up to exabytes.
  • Numbers can be fractional and/or in scientific notation. parse-size can accurately parse the input using the full 64-bit precision.
  • The unit is case-insensitive. The "B" suffix is also optional (1 KiB = 1 kib = 1Ki).
  • Fractional bytes are allowed, and rounded to nearest integer (2.5B = 3).
  • Underscores and spaces in the numbers are ignored to support digit grouping (123_456 = 123456).
  • Conventional units (KB, GB, ...) can be configured to use the binary system.
  • #![no_std]-capable, no dependencies, and uses no heap allocation.

No runtime deps

Features