parse-size
is an accurate, customizable, allocation-free library for
parsing byte size into integer.
```rust use parsesize::parsesize;
asserteq!(parsesize("0.2 MiB"), Ok(209715)); asserteq!(parsesize("14.2e+8"), Ok(1420000000)); ```
parse-size
can accurately parse the input using the full 64-bit precision.1 KiB
= 1 kib
= 1Ki
).2.5B
= 3
).123_456
= 123456
).#![no_std]
-capable, no dependencies, and uses no heap allocation.