2015-07-27 12:00:41 +03:00
|
|
|
|
--
|
2015-08-01 19:24:45 +03:00
|
|
|
|
-- Cabal config for Megaparsec.
|
2015-07-27 12:00:41 +03:00
|
|
|
|
--
|
2017-01-01 14:38:59 +03:00
|
|
|
|
-- Copyright © 2015–2017 Megaparsec contributors
|
2015-07-27 12:00:41 +03:00
|
|
|
|
--
|
|
|
|
|
-- Redistribution and use in source and binary forms, with or without
|
|
|
|
|
-- modification, are permitted provided that the following conditions are
|
|
|
|
|
-- met:
|
|
|
|
|
--
|
|
|
|
|
-- * Redistributions of source code must retain the above copyright notice,
|
|
|
|
|
-- this list of conditions and the following disclaimer.
|
|
|
|
|
--
|
|
|
|
|
-- * Redistributions in binary form must reproduce the above copyright
|
|
|
|
|
-- notice, this list of conditions and the following disclaimer in the
|
|
|
|
|
-- documentation and/or other materials provided with the distribution.
|
|
|
|
|
--
|
2015-10-30 16:41:21 +03:00
|
|
|
|
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS “AS IS” AND ANY
|
|
|
|
|
-- EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
|
-- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
|
-- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
|
|
|
-- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
|
-- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
|
-- OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
|
-- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
|
-- STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
|
-- ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
|
-- POSSIBILITY OF SUCH DAMAGE.
|
2015-07-27 12:00:41 +03:00
|
|
|
|
|
2016-02-08 10:30:57 +03:00
|
|
|
|
name: megaparsec
|
2016-10-06 22:38:35 +03:00
|
|
|
|
version: 5.1.2
|
2016-02-08 10:30:57 +03:00
|
|
|
|
cabal-version: >= 1.10
|
|
|
|
|
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
|
|
|
|
|
2016-02-08 10:30:57 +03:00
|
|
|
|
maintainer: Mark Karpov <markkarpov@opmbx.org>
|
|
|
|
|
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
|
|
|
|
|
2016-02-08 10:30:57 +03:00
|
|
|
|
This is industrial-strength monadic parser combinator library. Megaparsec
|
|
|
|
|
is a fork of Parsec library originally written by Daan Leijen.
|
2011-01-29 18:59:20 +03:00
|
|
|
|
|
2016-07-24 11:06:24 +03:00
|
|
|
|
extra-doc-files: AUTHORS.md
|
2016-02-08 10:30:57 +03:00
|
|
|
|
, CHANGELOG.md
|
|
|
|
|
, README.md
|
2014-07-23 05:58:55 +04:00
|
|
|
|
|
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
|
2016-09-04 16:44:24 +03:00
|
|
|
|
build-depends: QuickCheck >= 2.7 && < 3.0
|
|
|
|
|
, base >= 4.6 && < 5.0
|
2016-06-10 12:16:48 +03:00
|
|
|
|
, bytestring >= 0.2 && < 0.11
|
|
|
|
|
, containers >= 0.5 && < 0.6
|
2016-07-11 12:16:47 +03:00
|
|
|
|
, deepseq >= 1.3 && < 1.5
|
2016-06-10 12:16:48 +03:00
|
|
|
|
, exceptions >= 0.6 && < 0.9
|
|
|
|
|
, mtl >= 2.0 && < 3.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 13:33:19 +03:00
|
|
|
|
|
|
|
|
|
if !impl(ghc >= 8.0)
|
|
|
|
|
-- packages providing modules that moved into base-4.9.0.0
|
|
|
|
|
build-depends: fail == 4.9.*
|
|
|
|
|
, semigroups == 0.18.*
|
|
|
|
|
|
2016-03-24 14:34:16 +03:00
|
|
|
|
if !impl(ghc >= 7.8)
|
|
|
|
|
build-depends: tagged == 0.8.*
|
|
|
|
|
|
2016-02-08 10:30:57 +03:00
|
|
|
|
exposed-modules: Text.Megaparsec
|
|
|
|
|
, Text.Megaparsec.ByteString
|
|
|
|
|
, Text.Megaparsec.ByteString.Lazy
|
|
|
|
|
, Text.Megaparsec.Char
|
|
|
|
|
, Text.Megaparsec.Combinator
|
|
|
|
|
, Text.Megaparsec.Error
|
|
|
|
|
, Text.Megaparsec.Expr
|
|
|
|
|
, Text.Megaparsec.Lexer
|
|
|
|
|
, Text.Megaparsec.Perm
|
|
|
|
|
, Text.Megaparsec.Pos
|
|
|
|
|
, Text.Megaparsec.Prim
|
|
|
|
|
, Text.Megaparsec.String
|
|
|
|
|
, Text.Megaparsec.Text
|
|
|
|
|
, Text.Megaparsec.Text.Lazy
|
2015-12-23 15:42:00 +03:00
|
|
|
|
if flag(dev)
|
2016-02-08 10:30:57 +03:00
|
|
|
|
ghc-options: -Wall -Werror
|
2016-02-08 13:33:19 +03:00
|
|
|
|
if impl(ghc >= 8.0)
|
|
|
|
|
ghc-options: -Wcompat
|
|
|
|
|
ghc-options: -Wnoncanonical-monadfail-instances
|
|
|
|
|
ghc-options: -Wnoncanonical-monoid-instances
|
2015-12-23 15:42:00 +03:00
|
|
|
|
else
|
2016-02-08 10:30:57 +03:00
|
|
|
|
ghc-options: -O2 -Wall
|
|
|
|
|
default-language: Haskell2010
|
2015-03-22 04:42:33 +03:00
|
|
|
|
|
2015-07-31 15:59:26 +03:00
|
|
|
|
test-suite tests
|
2016-09-04 17:00:46 +03:00
|
|
|
|
main-is: Spec.hs
|
2016-02-08 10:30:57 +03:00
|
|
|
|
hs-source-dirs: tests
|
|
|
|
|
type: exitcode-stdio-1.0
|
2015-12-23 15:42:00 +03:00
|
|
|
|
if flag(dev)
|
2016-02-08 10:30:57 +03:00
|
|
|
|
ghc-options: -Wall -Werror
|
2015-12-23 15:42:00 +03:00
|
|
|
|
else
|
2016-02-08 10:30:57 +03:00
|
|
|
|
ghc-options: -O2 -Wall
|
2016-09-04 17:00:46 +03:00
|
|
|
|
other-modules: Test.Hspec.Megaparsec
|
|
|
|
|
, Test.Hspec.Megaparsec.AdHoc
|
|
|
|
|
, Text.Megaparsec.CharSpec
|
|
|
|
|
, Text.Megaparsec.CombinatorSpec
|
|
|
|
|
, Text.Megaparsec.ErrorSpec
|
|
|
|
|
, Text.Megaparsec.ExprSpec
|
|
|
|
|
, Text.Megaparsec.LexerSpec
|
|
|
|
|
, Text.Megaparsec.PermSpec
|
|
|
|
|
, Text.Megaparsec.PosSpec
|
|
|
|
|
, Text.Megaparsec.PrimSpec
|
|
|
|
|
build-depends: QuickCheck >= 2.7 && < 3.0
|
|
|
|
|
, base >= 4.6 && < 5.0
|
|
|
|
|
, bytestring >= 0.2 && < 0.11
|
|
|
|
|
, containers >= 0.5 && < 0.6
|
|
|
|
|
, exceptions >= 0.6 && < 0.9
|
|
|
|
|
, hspec >= 2.0 && < 3.0
|
2016-10-09 15:51:06 +03:00
|
|
|
|
, hspec-expectations >= 0.5 && < 0.9
|
2016-10-06 22:38:35 +03:00
|
|
|
|
, megaparsec >= 5.1.2
|
2016-09-04 17:00:46 +03:00
|
|
|
|
, mtl >= 2.0 && < 3.0
|
|
|
|
|
, scientific >= 0.3.1 && < 0.4
|
|
|
|
|
, text >= 0.2 && < 1.3
|
|
|
|
|
, transformers >= 0.4 && < 0.6
|
2016-04-30 14:22:00 +03:00
|
|
|
|
|
2016-04-22 15:52:55 +03:00
|
|
|
|
if !impl(ghc >= 8.0)
|
|
|
|
|
-- packages providing modules that moved into base-4.9.0.0
|
|
|
|
|
build-depends: semigroups == 0.18.*
|
|
|
|
|
|
2016-04-30 14:22:00 +03:00
|
|
|
|
if !impl(ghc >= 7.8)
|
|
|
|
|
build-depends: tagged == 0.8.*
|
|
|
|
|
|
2016-02-08 10:30:57 +03:00
|
|
|
|
default-language: Haskell2010
|
2015-07-31 17:12:56 +03:00
|
|
|
|
|
|
|
|
|
benchmark benchmarks
|
2016-02-08 10:30:57 +03:00
|
|
|
|
main-is: Main.hs
|
|
|
|
|
hs-source-dirs: benchmarks
|
|
|
|
|
type: exitcode-stdio-1.0
|
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
|
2016-09-04 17:00:46 +03:00
|
|
|
|
build-depends: base >= 4.6 && < 5.0
|
|
|
|
|
, bytestring >= 0.10 && < 0.11
|
|
|
|
|
, criterion >= 0.6.2.1 && < 1.2
|
2016-10-06 22:38:35 +03:00
|
|
|
|
, megaparsec >= 5.1.2
|
2016-09-04 17:00:46 +03:00
|
|
|
|
, text >= 0.2 && < 1.3
|
2016-02-19 15:28:51 +03:00
|
|
|
|
default-language: Haskell2010
|
2015-07-31 15:59:26 +03:00
|
|
|
|
|
2015-07-27 12:00:41 +03:00
|
|
|
|
source-repository head
|
2016-02-08 10:30:57 +03:00
|
|
|
|
type: git
|
|
|
|
|
location: https://github.com/mrkkrp/megaparsec.git
|