attoparsec is a fast Haskell parser combinator library, aimed
particularly at dealing efficiently with network protocols and
complicated text/binary file formats.
Join in!
I’m happy to receive bug reports, fixes, documentation enhancements,
and other improvements.
Made the parser type in the Zepto module a monad transformer
(needed by aeson’s string unescaping parser).
0.12.1.6
Fixed a case folding bug in the ByteString version of stringCI.
0.12.1.5
Fixed an indexing bug in the new Text implementation of string,
reported by Michel Boucey.
0.12.1.4
Fixed a case where the string parser would consume an unnecessary
amount of input before failing a match, when it could bail much
earlier (https://github.com/bos/attoparsec/issues/97)
Reintroduced the Chunk class, used by the parsers package
0.12.0.0
A new internal representation makes almost all real-world parsers
faster, sometimes by big margins. For example, parsing JSON data
with aeson is now up to 70% faster. These performance improvements
also come with reduced memory consumption and some new capabilities.
The new match combinator gives both the result of a parse and the
input that it matched.
The test suite has doubled in size. This made it possible to switch
to the new internal representation with a decent degree of
confidence that everything was more or less working.
The benchmark suite now contains a small family of benchmarks taken
from real-world uses of attoparsec.
A few types that ought to have been private now are.
A few obsolete modules and functions have been marked as deprecated.
They will be removed from the next major release.