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 impliestext >= 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.
First step towards #63.
According to https://github.com/fpco/text-stream-decode/issues/1,
Data.Text.Internal
subtree has been cloned to supporttext < 1.1
, but these daysstreaming-commons
requiresbase >= 4.12
, which impliestext >= 1.2.3.1
, so we can just scrap compatibility shim and usetext
proper.Since an upcoming major release of
text
breaksData.Streaming.Text
, I put an upper bound as well. I'm working on patches forData.Streaming.Text
to work with UTF8 internal representation, stay tuned.