IronCoreLabs / ironoxide

Rust SDK for IronCore Privacy Platform
https://docs.rs/ironoxide
GNU Affero General Public License v3.0
10 stars 3 forks source link

Fix issue with serde 1.0.119 #216

Closed giarc3 closed 3 years ago

giarc3 commented 3 years ago

Breaking change in patch bump :upside_down_face:

For some reason, we were implementing Display using an export of serde, but apparently we weren't supposed to be able to import that (they renamed the module to __private). This change makes us implement Display in the standard way using std::fmt::Display, so the change is backwards compatible and we don't have to set a minimum version of serde.