num-format
num-format copied to clipboard
A Rust crate for producing string representations of numbers, formatted according to international standards
It seems that at the moment the crate only supports `latn` while CLDR has a much wider selection: `"arab", "arabext", "bali", "beng", "deva", "fullwide", "gujr", "guru", "hanidec", "khmr", "knda", "laoo",...
I think this crate is great, and it massively simplifies some logic in my project while being much faster at it. But I’m working with financial data, where -$50 should...
Hey Brian I watched you present at RustNYC. Cool project. I was curious how num_format performed relative to Python and so put together a tiny benchmark to find out. It...
This API is much needed for a lot of intl and l10n operations, thank you for writing it! As for how to shape the public API I would recommend to...
For no reason whatsoever other than unwraps bother me.
itoa 0.4, a dependency of this crate, uses the deprecated `mem::uninitialized` function. On recent nightly builds of the compiler, that function has become a lot slower in order to mitigate...
Howdy, Builds are currently failing due to what I assume is a change in `winapi`. It's an easy fix, the `errhandlingapi` feature flag just needs to be added to the...