informationsea / xlsxwriter-rs

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

Allow newer versions of bindgen (fix of previous PR) #16

Closed FelixMoelder closed 3 years ago

FelixMoelder commented 3 years ago

I just realized that the previous PR does not loosen the bindgen version restriction as bindgen = "^0.54" it is equal to >=0.54, <0.55. To allow the latest version of bindgen I now changed the requirement to >=0.54, <0.59 as this included the latest version.

Sorry for the confusion. ;)

It would be nice if you would also publish a new version of xslxwriter after merging. Thanks!