name: parsec1 version: 1.0.0.7 license: BSD3 license-file: LICENSE maintainer: chr.maeder@web.de category: Parsing synopsis: Portable monadic parser combinators description: Parsec is designed from scratch as an industrial-strength parser library. It is simple, safe, well-known, has extensive libraries, good error messages, and is also fast. . This package is the core haskell98 part of the parsec2 package as originally created by Daan Leijen. It is intended to preserve its simplicity and portability. . This version differs from the pervious one only by a MonadFail instance to let it compile with ghc-8.8. build-type: Simple cabal-version: >= 1.6 library { exposed-modules: Text.ParserCombinators.Parsec.Error, Text.ParserCombinators.Parsec.Char, Text.ParserCombinators.Parsec.Combinator, Text.ParserCombinators.Parsec.Pos, Text.ParserCombinators.Parsec.Prim, Text.ParserCombinators.Parsec build-depends: base >= 4.9 && < 5 }