ewestern / geos

This is a Haskell binding to Geos, the open-source geometry library
MIT License
13 stars 9 forks source link

Consider adding Generic instances throughout #32

Closed tysonzero closed 5 years ago

tysonzero commented 5 years ago

The lack of Generic instances makes the lack of other instances like FromJSON and ToJSON a lot more painful, as you either need orphans or handwritten instances. Adding Generic instances doesn't require adding any new dependencies, so it seems like a worthwhile addition to me.

ewestern commented 5 years ago

Good idea. Will definitely accept a PR to that effect.