-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathparsers-megaparsec.cabal
39 lines (35 loc) · 1.63 KB
/
parsers-megaparsec.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
-- Initial parsers-megaparsec.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: parsers-megaparsec
version: 0.1.0.2
synopsis: `parsers` instances for Megaparsec
description: A newtype around ParsecT with instances for Parsing,
CharParsing, LookAheadParsing, and TokenParsing
extra-source-files: ChangeLog.md
category: Text, Parsing
license: BSD3
-- Must be spelled with a 'C' for nix
license-file: LICENCE
author: Queensland Functional Programming Lab <oᴉ˙ldɟb@llǝʞsɐɥ>
maintainer: Queensland Functional Programming Lab <oᴉ˙ldɟb@llǝʞsɐɥ>
homepage: https://github.com/qfpl/parsers-megaparsec
bug-reports: https://github.com/qfpl/parsers-megaparsec/issues
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
tested-with: GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.1
source-repository head
type: git
location: [email protected]:qfpl/parsers-megaparsec.git
library
exposed-modules: Text.Megaparsec.Parsers
build-depends: base >=4.7 && <5
, fail >=4.7 && <5
, megaparsec >= 6 && < 9.5
, parsers ==0.12.*
, mtl >=2.2 && <2.4
, semigroups >=0.9 && <0.21
, text >=1.2 && <2.1
, transformers >=0.4.2 && <0.7
hs-source-dirs: src
default-language: Haskell2010