informationsea / xlsxwriter-rs

Excel file writer for Rust
https://crates.io/crates/xlsxwriter
Apache License 2.0
265 stars 44 forks source link

Fix locale-dependent number encodings #36

Closed birktj closed 1 year ago

birktj commented 1 year ago

This PR defines USE_DTOA_LIBRARY in order to fix #35. However it does not put this behind any feature flag and so will always compile libxlsxwirter with USE_DTOA_LIBRARY. If this is unwanted an alternative would be to have the same code, but put it behind a feature flag. In that case to should it probably be a negative feature flag as defining USE_DTOA_LIBRARY seems like the most sensible default option.