gifnksm / polynomial-rs

Manipulations and data types that represent polynomial
MIT License
18 stars 11 forks source link

Add serde support #19

Closed xoloki closed 1 year ago

xoloki commented 1 year ago

This change adds serde support to the crate. It updates cargo to include serde as an optional feature, so users who don't need serde will by default not get it. It also adds #derive directives if the serde feature is enabled.

gifnksm commented 1 year ago

Thank you!

xoloki commented 1 year ago

Thank you for the merge!