replace-megaparsec
replace-megaparsec copied to clipboard
Bounds for dependencies seem incorrect
The Cabal file for replace-megaparsec states simply that megaparsec is a dependency, but that seems incorrect: in fact, versions of megaparsec will have to at least be >= 7.0.0 to work.
This because the code for replace-megaparsec uses the anySingle function, introduced in megaparsec 7.0.0.
Thus, the Cabal file should give the dependency as:
, megaparsec >= 7.0.0
(The bounds might in fact be tighter than that; I haven't checked whether megaparsec 7.0.0 will in fact work.)
thanks for making this issue! ill check it out.
Done