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

Build failing due to missing feature from winapi #43

Open samipfjo opened 1 year ago

samipfjo commented 1 year ago

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 dependency declaration.

For those needing a fix before a patch gets merged, just add winapi = { version="0.3.9", features=["errhandlingapi"] } to your Cargo.toml.

samipfjo commented 1 year ago

A failing build of num-format followed by a succeeding build Before and after adding the feature to my project's Cargo.toml