mirror of
https://github.com/mrkkrp/megaparsec.git
synced 2024-12-01 02:47:13 +03:00
49 lines
1.7 KiB
Plaintext
49 lines
1.7 KiB
Plaintext
name: parsec
|
|
version: 3.0.1
|
|
cabal-version: >= 1.2
|
|
license: BSD3
|
|
license-file: LICENSE
|
|
author: Daan Leijen <daan@cs.uu.nl>, Paolo Martini <paolo@nemail.it>
|
|
maintainer: Derek Elkins <derek.a.elkins@gmail.com>
|
|
homepage: http://www.cs.uu.nl/~daan/parsec.html
|
|
category: Parsing
|
|
synopsis: Monadic parser combinators
|
|
build-type: Simple
|
|
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. It is defined as a monad transformer that can be
|
|
stacked on arbitrary monads, and it is also parametric in the
|
|
input stream type.
|
|
|
|
library
|
|
exposed-modules:
|
|
Text.Parsec,
|
|
Text.Parsec.String,
|
|
Text.Parsec.ByteString,
|
|
Text.Parsec.ByteString.Lazy,
|
|
Text.Parsec.Pos,
|
|
Text.Parsec.Error,
|
|
Text.Parsec.Prim,
|
|
Text.Parsec.Char,
|
|
Text.Parsec.Combinator,
|
|
Text.Parsec.Token,
|
|
Text.Parsec.Expr,
|
|
Text.Parsec.Language,
|
|
Text.Parsec.Perm,
|
|
Text.ParserCombinators.Parsec,
|
|
Text.ParserCombinators.Parsec.Char,
|
|
Text.ParserCombinators.Parsec.Combinator,
|
|
Text.ParserCombinators.Parsec.Error,
|
|
Text.ParserCombinators.Parsec.Expr,
|
|
Text.ParserCombinators.Parsec.Language,
|
|
Text.ParserCombinators.Parsec.Perm,
|
|
Text.ParserCombinators.Parsec.Pos,
|
|
Text.ParserCombinators.Parsec.Prim,
|
|
Text.ParserCombinators.Parsec.Token
|
|
build-depends: base, mtl, bytestring, syb
|
|
extensions: ExistentialQuantification, PolymorphicComponents, MultiParamTypeClasses, FlexibleInstances, FlexibleContexts, DeriveDataTypeable
|
|
ghc-options: -O2
|
|
ghc-prof-options: -auto-all
|