5 releases

0.1.4 Dec 14, 2024
0.1.3 Sep 24, 2024
0.1.2 Jul 15, 2024
0.1.1 Jul 15, 2024
0.1.0 Jul 14, 2024

#128 in Value formatting

Download history 15/week @ 2024-12-25 28/week @ 2025-01-01 21/week @ 2025-01-08 23/week @ 2025-01-15 36/week @ 2025-02-05 25/week @ 2025-02-12 36/week @ 2025-02-19 17/week @ 2025-02-26 7/week @ 2025-03-05 14/week @ 2025-03-12 9/week @ 2025-03-19 24/week @ 2025-03-26 14/week @ 2025-04-02 14/week @ 2025-04-09

63 downloads per month
Used in git-metrics

MIT license

17KB
340 lines

Human Number

This library is just made to format numbers in a pretty human readable way.

Installation

cargo add human-number

Usage

// Using SI scales
let formatter = Formatter::si().with_unit("g");
let result = format!("{}", formatter.format(40_280.0));
assert_eq!(result, "40.28 kg");
let result = format!("{}", formatter.format(0.04823));
assert_eq!(result, "48.23 mg");

// Using binary scales
let formatter = Formatter::binary().with_unit("B");
let result = format!("{}", formatter.format(4096.0));
assert_eq!(result, "4.00 kiB");

No runtime deps