num-format icon indicating copy to clipboard operation
num-format copied to clipboard

A Rust crate for producing string representations of numbers, formatted according to international standards

Results 28 num-format issues
Sort by recently updated
recently updated
newest added

On armv7hl (but the repro is the same on i686): ``` $ cargo test [...] running 6 tests test test_non_zero_u16 ... ok test test_non_zero_u32 ... ok test test_non_zero_u128 ... ok...

I was recently alerted to the rust-num-format package being broken in Debian, and worked through mulitple issues to get us a usable package. The full set of patches can be...

It looks like there has been no activity over the past couple of years and there are pending PRs to fix deprecated functions and to update some outstanding dependencies. If...

Hi, @bcmyers! Thanks for your interest in the i18n field! I just wanted to make you aware of the ICU4X project. It supports several CLDR-backed features in Rust, including basic...

Hello! I'm trying to format some numbers like this: ``` 1337 -> 1337.00 123.4 -> 123.40 123.45 -> 123.45 ``` In the rust standard library this would work with `{:.2}`,...

Currently, `Locale::from_str` only supports dash-delimited locales like `de-DE`. However, often times locales are represented with an underscore like `de_DE`. This PR adds support for allowing both variations to be passed...

Could you please update crates.io with the new 0.4.1 version to get the updated bindgen dependency? Thanks.

1) `mem::uninitialized` is deprecated so this no longer compiles as deprecated calls are denied, but there is no need to do that anyway and it really is quite unsafe 2)...