fpco / streaming-commons

Common lower-level functions needed by various streaming data libraries
MIT License
36 stars 41 forks source link

Drop cloned Data.Text.Internal substree #64

Closed Bodigrim closed 2 years ago

Bodigrim commented 2 years ago

First step towards #63.

According to https://github.com/fpco/text-stream-decode/issues/1, Data.Text.Internal subtree has been cloned to support text < 1.1, but these days streaming-commons requires base >= 4.12, which implies text >= 1.2.3.1, so we can just scrap compatibility shim and use text proper.

Since an upcoming major release of text breaks Data.Streaming.Text, I put an upper bound as well. I'm working on patches for Data.Streaming.Text to work with UTF8 internal representation, stay tuned.

snoyberg commented 2 years ago

Thanks!