parsec1-1.0.0.8: parsec1.cabal
name: parsec1
version: 1.0.0.8
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.
build-type: Simple
cabal-version: >= 1.10
source-repository head
type: git
location: https://github.com/cmaeder/parsec1
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
other-extensions: CPP
default-language: Haskell98