cdepillabout / pretty-simple

pretty-printer for Haskell data types that have a Show instance
https://hackage.haskell.org/package/pretty-simple
BSD 3-Clause "New" or "Revised" License
243 stars 29 forks source link

Get rid of the `mono-traversable` dependency #2

Closed cdepillabout closed 7 years ago

cdepillabout commented 7 years ago

Ideally, pretty-simple would have as few dependencies as possible.

mono-traversable was used during development of pretty-simple to make development go faster, but it should not actually be needed.

Specific functions from Data.List, Data.Sequence, Data.Text, etc should be used instead of the generic functions from mono-traversable.

tebello-thejane commented 7 years ago

Please see pull request #13. :-)

cdepillabout commented 7 years ago

Thanks again!