Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
For the most part, this is simply a matter of raising the upper version bounds in the `.cabal` file. The max-size request test case in the test suite needed to be adjusted, as it needs to pick a sufficiently large request such that it takes multiple chunks to store it as a lazy Text value. With `text-2.0` or later, the amount of ASCII characters that a single chunk can store is much larger due to using UTF-8 encoding internally, so we must generate a larger request to compensate.
- Loading branch information
3d56d73
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@RyanGlScott
Why are we generating bytes like these and not just via
BL.replicate size (c2w char)
wheresize
andchar
are our variables?