bcmyers / num-format

A Rust crate for producing string representations of numbers, formatted according to international standards
Apache License 2.0
122 stars 22 forks source link

Fix compilation issues #20

Closed lespea closed 1 year ago

lespea commented 4 years ago

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) num-format-windows isn't even used as winapi provides the constants; having bindgen as a requirement for num-format is causing issues with build pipelines 3) I updated the deps to the latest versions

bcmyers commented 1 year ago

I just did a bunch of maintenance on this crate, including getting rid of mem::uninitialized. I think num-format-windows is still required at winapi isn't yet wrapping the things I'm using from the Windows API.