2016-02-08 10:30:57 +03:00
|
|
|
name: megaparsec
|
2019-11-07 21:35:27 +03:00
|
|
|
version: 8.0.0
|
2018-03-16 23:16:11 +03:00
|
|
|
cabal-version: 1.18
|
2020-04-12 12:34:29 +03:00
|
|
|
tested-with: GHC==8.6.5, GHC==8.8.3, GHC==8.10.1
|
2016-02-08 10:30:57 +03:00
|
|
|
license: BSD2
|
|
|
|
license-file: LICENSE.md
|
|
|
|
author: Megaparsec contributors,
|
|
|
|
Paolo Martini <paolo@nemail.it>,
|
|
|
|
Daan Leijen <daan@microsoft.com>
|
2015-07-31 14:44:27 +03:00
|
|
|
|
2017-05-24 15:30:10 +03:00
|
|
|
maintainer: Mark Karpov <markkarpov92@gmail.com>
|
2016-02-08 10:30:57 +03:00
|
|
|
homepage: https://github.com/mrkkrp/megaparsec
|
|
|
|
bug-reports: https://github.com/mrkkrp/megaparsec/issues
|
|
|
|
category: Parsing
|
|
|
|
synopsis: Monadic parser combinators
|
|
|
|
build-type: Simple
|
2008-01-13 20:53:15 +03:00
|
|
|
description:
|
2008-03-06 08:02:48 +03:00
|
|
|
|
2017-12-30 19:55:42 +03:00
|
|
|
This is an industrial-strength monadic parser combinator library.
|
2019-10-19 21:37:04 +03:00
|
|
|
Megaparsec is a feature-rich package that tries to find a nice balance
|
|
|
|
between speed, flexibility, and quality of parse errors.
|
2011-01-29 18:59:20 +03:00
|
|
|
|
2019-07-02 21:52:39 +03:00
|
|
|
extra-doc-files: CHANGELOG.md
|
2016-02-08 10:30:57 +03:00
|
|
|
, README.md
|
2014-07-23 05:58:55 +04:00
|
|
|
|
2017-01-29 02:30:16 +03:00
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: https://github.com/mrkkrp/megaparsec.git
|
|
|
|
|
2015-12-23 15:42:00 +03:00
|
|
|
flag dev
|
2016-02-08 10:30:57 +03:00
|
|
|
description: Turn on development settings.
|
|
|
|
manual: True
|
|
|
|
default: False
|
2015-12-23 15:42:00 +03:00
|
|
|
|
2015-07-27 12:00:41 +03:00
|
|
|
library
|
2020-04-12 12:34:29 +03:00
|
|
|
build-depends: base >= 4.12 && < 5.0
|
2016-06-10 12:16:48 +03:00
|
|
|
, bytestring >= 0.2 && < 0.11
|
2017-07-02 19:56:01 +03:00
|
|
|
, case-insensitive >= 1.2 && < 1.3
|
2018-08-14 20:04:55 +03:00
|
|
|
, containers >= 0.5 && < 0.7
|
2016-07-11 12:16:47 +03:00
|
|
|
, deepseq >= 1.3 && < 1.5
|
2019-09-01 15:44:08 +03:00
|
|
|
, mtl >= 2.2.2 && < 3.0
|
2018-04-28 14:48:17 +03:00
|
|
|
, parser-combinators >= 1.0 && < 2.0
|
2016-03-29 13:33:59 +03:00
|
|
|
, scientific >= 0.3.1 && < 0.4
|
2016-06-10 12:16:48 +03:00
|
|
|
, text >= 0.2 && < 1.3
|
|
|
|
, transformers >= 0.4 && < 0.6
|
2016-02-08 10:30:57 +03:00
|
|
|
exposed-modules: Text.Megaparsec
|
2017-07-03 14:34:00 +03:00
|
|
|
, Text.Megaparsec.Byte
|
2017-07-09 20:12:23 +03:00
|
|
|
, Text.Megaparsec.Byte.Lexer
|
2016-02-08 10:30:57 +03:00
|
|
|
, Text.Megaparsec.Char
|
2017-07-04 13:12:35 +03:00
|
|
|
, Text.Megaparsec.Char.Lexer
|
2018-04-20 10:00:43 +03:00
|
|
|
, Text.Megaparsec.Debug
|
2016-02-08 10:30:57 +03:00
|
|
|
, Text.Megaparsec.Error
|
2017-06-29 14:33:47 +03:00
|
|
|
, Text.Megaparsec.Error.Builder
|
2018-03-27 17:40:20 +03:00
|
|
|
, Text.Megaparsec.Internal
|
2016-02-08 10:30:57 +03:00
|
|
|
, Text.Megaparsec.Pos
|
2017-06-14 22:12:18 +03:00
|
|
|
, Text.Megaparsec.Stream
|
2018-03-27 17:40:20 +03:00
|
|
|
other-modules: Text.Megaparsec.Class
|
2018-07-08 18:11:31 +03:00
|
|
|
, Text.Megaparsec.Common
|
|
|
|
, Text.Megaparsec.Lexer
|
2018-03-27 17:40:20 +03:00
|
|
|
, Text.Megaparsec.State
|
2015-12-23 15:42:00 +03:00
|
|
|
if flag(dev)
|
2017-09-23 15:49:32 +03:00
|
|
|
ghc-options: -O0 -Wall -Werror
|
2015-12-23 15:42:00 +03:00
|
|
|
else
|
2016-02-08 10:30:57 +03:00
|
|
|
ghc-options: -O2 -Wall
|
2019-04-30 00:27:06 +03:00
|
|
|
if flag(dev)
|
2018-03-21 13:25:26 +03:00
|
|
|
ghc-options: -Wcompat
|
|
|
|
-Wincomplete-record-updates
|
|
|
|
-Wincomplete-uni-patterns
|
|
|
|
-Wnoncanonical-monad-instances
|
2016-02-08 10:30:57 +03:00
|
|
|
default-language: Haskell2010
|
2015-03-22 04:42:33 +03:00
|
|
|
|
2017-01-29 02:30:16 +03:00
|
|
|
benchmark bench-speed
|
2016-02-08 10:30:57 +03:00
|
|
|
main-is: Main.hs
|
2017-06-14 22:12:18 +03:00
|
|
|
hs-source-dirs: bench/speed
|
2016-02-08 10:30:57 +03:00
|
|
|
type: exitcode-stdio-1.0
|
2020-04-12 12:34:29 +03:00
|
|
|
build-depends: base >= 4.12 && < 5.0
|
2018-08-14 20:04:55 +03:00
|
|
|
, containers >= 0.5 && < 0.7
|
2018-07-03 08:07:53 +03:00
|
|
|
, criterion >= 0.6.2.1 && < 1.6
|
2017-01-29 02:30:16 +03:00
|
|
|
, deepseq >= 1.3 && < 1.5
|
2017-04-29 16:42:38 +03:00
|
|
|
, megaparsec
|
2017-07-02 19:56:01 +03:00
|
|
|
, text >= 0.2 && < 1.3
|
2015-12-23 15:42:00 +03:00
|
|
|
if flag(dev)
|
2016-02-08 10:30:57 +03:00
|
|
|
ghc-options: -O2 -Wall -Werror
|
2015-12-23 15:42:00 +03:00
|
|
|
else
|
2016-02-08 10:30:57 +03:00
|
|
|
ghc-options: -O2 -Wall
|
2017-01-29 02:30:16 +03:00
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
benchmark bench-memory
|
|
|
|
main-is: Main.hs
|
2017-06-14 22:12:18 +03:00
|
|
|
hs-source-dirs: bench/memory
|
2017-01-29 02:30:16 +03:00
|
|
|
type: exitcode-stdio-1.0
|
2020-04-12 12:34:29 +03:00
|
|
|
build-depends: base >= 4.12 && < 5.0
|
2018-08-14 20:04:55 +03:00
|
|
|
, containers >= 0.5 && < 0.7
|
2017-01-29 02:30:16 +03:00
|
|
|
, deepseq >= 1.3 && < 1.5
|
2017-04-29 16:42:38 +03:00
|
|
|
, megaparsec
|
2017-07-02 19:56:01 +03:00
|
|
|
, text >= 0.2 && < 1.3
|
2017-05-25 10:18:35 +03:00
|
|
|
, weigh >= 0.0.4
|
2017-01-29 02:30:16 +03:00
|
|
|
if flag(dev)
|
|
|
|
ghc-options: -O2 -Wall -Werror
|
|
|
|
else
|
|
|
|
ghc-options: -O2 -Wall
|
2016-02-19 15:28:51 +03:00
|
|
|
default-language: Haskell2010
|