2008-01-13 20:53:15 +03:00
|
|
|
name: parsec
|
2015-03-19 17:58:05 +03:00
|
|
|
version: 3.1.9
|
2014-09-10 05:17:49 +04:00
|
|
|
cabal-version: >= 1.8
|
2008-01-13 20:53:15 +03:00
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
2010-03-04 07:09:29 +03:00
|
|
|
author: Daan Leijen <daan@microsoft.com>, Paolo Martini <paolo@nemail.it>
|
2011-01-29 18:47:58 +03:00
|
|
|
maintainer: Antoine Latter <aslatter@gmail.com>
|
2014-10-16 20:22:38 +04:00
|
|
|
homepage: https://github.com/aslatter/parsec
|
2014-03-24 05:06:15 +04:00
|
|
|
bug-reports: https://github.com/aslatter/parsec/issues
|
2008-01-13 20:53:15 +03:00
|
|
|
category: Parsing
|
|
|
|
synopsis: Monadic parser combinators
|
2014-10-16 20:22:38 +04:00
|
|
|
build-type: Simple
|
2008-01-13 20:53:15 +03:00
|
|
|
description:
|
|
|
|
Parsec is designed from scratch as an industrial-strength parser
|
|
|
|
library. It is simple, safe, well documented (on the package
|
2014-10-16 20:22:38 +04:00
|
|
|
homepage), has extensive libraries, good error messages,
|
|
|
|
and is fast. It is defined as a monad transformer that can be
|
2008-01-13 20:53:15 +03:00
|
|
|
stacked on arbitrary monads, and it is also parametric in the
|
|
|
|
input stream type.
|
2012-06-12 06:07:43 +04:00
|
|
|
extra-source-files: CHANGES
|
2008-03-06 08:02:48 +03:00
|
|
|
|
2011-01-29 18:59:20 +03:00
|
|
|
source-repository head
|
2014-03-24 00:52:23 +04:00
|
|
|
type: git
|
|
|
|
location: https://github.com/aslatter/parsec
|
2011-01-29 18:59:20 +03:00
|
|
|
|
2014-10-16 20:22:38 +04:00
|
|
|
library
|
2008-03-06 08:02:48 +03:00
|
|
|
exposed-modules:
|
|
|
|
Text.Parsec,
|
|
|
|
Text.Parsec.String,
|
|
|
|
Text.Parsec.ByteString,
|
|
|
|
Text.Parsec.ByteString.Lazy,
|
2011-10-08 22:17:18 +04:00
|
|
|
Text.Parsec.Text,
|
|
|
|
Text.Parsec.Text.Lazy,
|
2008-03-06 08:02:48 +03:00
|
|
|
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,
|
2008-02-17 06:53:24 +03:00
|
|
|
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
|
2014-07-23 05:58:55 +04:00
|
|
|
|
2015-03-22 04:42:33 +03:00
|
|
|
build-depends:
|
|
|
|
base >= 4 && < 5,
|
|
|
|
mtl,
|
|
|
|
bytestring,
|
|
|
|
text >= 0.2 && < 1.3
|
|
|
|
|
|
|
|
extensions:
|
|
|
|
ExistentialQuantification,
|
|
|
|
PolymorphicComponents,
|
|
|
|
MultiParamTypeClasses,
|
|
|
|
FlexibleInstances,
|
|
|
|
FlexibleContexts,
|
|
|
|
DeriveDataTypeable,
|
|
|
|
CPP
|
2014-09-10 05:17:49 +04:00
|
|
|
|
|
|
|
Test-Suite tests
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
hs-source-dirs: test
|
|
|
|
main-is: Main.hs
|
|
|
|
other-modules:
|
2014-09-25 04:22:35 +04:00
|
|
|
Bugs,
|
|
|
|
Bugs.Bug2,
|
2014-09-25 05:10:39 +04:00
|
|
|
Bugs.Bug6,
|
|
|
|
Bugs.Bug9,
|
|
|
|
Util
|
2014-09-10 05:17:49 +04:00
|
|
|
build-depends:
|
|
|
|
base,
|
|
|
|
parsec,
|
|
|
|
HUnit == 1.2.*,
|
|
|
|
test-framework >= 0.6 && < 0.9,
|
2014-09-25 05:47:18 +04:00
|
|
|
test-framework-hunit >= 0.2 && < 0.4
|
|
|
|
ghc-options: -Wall
|