bcmyers / num-format

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

Fix Windows cross-compilation and add ?Sized to use of Format trait #47

Open anacrolix opened 4 months ago

anacrolix commented 4 months ago

By using windows-sys we can entirely remove the need for bindgen, and Windows.h enabling cross compilation to Windows.

Additionally we relax the use of the Format trait to be ?Sized where possible, allowing to use fallback Format implementations through Box/dyn.

Please let me know if I missed anything, or you want it broken up more or something.