parsec1-1.0.0.0: parsec1.cabal
cabal-version: >= 1.2
name: parsec1
version: 1.0.0.0
license: BSD3
license-file: LICENSE
author: Daan Leijen <daan@cs.uu.nl>
maintainer: Christian Maeder <Christian.Maeder@dfki.de>
homepage: http://www.cs.uu.nl/~daan/parsec.html
category: Parsing
synopsis: Monadic parser combinators
description:
Parsec is designed from scratch as an industrial-strength parser
library. It is simple, safe, well documented (on the package
homepage), has extensive libraries and good error messages,
and is also fast.
.
This package is the core haskell98 part of the parsec2
package, intended to preserve its simplicity and portability.
build-type: Simple
extra-source-files: CHANGELOG
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 < 5
}