-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfused-effects-parser.cabal
71 lines (67 loc) · 1.94 KB
/
fused-effects-parser.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
cabal-version: 2.2
name: fused-effects-parser
version: 0.0.0.0
synopsis: Parsing w/ fused-effects inspired by trifecta
description: Parser combinators integrating w/ fused-effects, inspired by trifecta
homepage: https://github.com/fused-effects/fused-effects-parser
bug-reports: https://github.com/fused-effects/fused-effects-parser/issues
license: BSD-3-Clause
license-file: LICENSE
author: Rob Rix
maintainer: [email protected]
copyright: 2019 Rob Rix
category: Language
extra-source-files:
CHANGELOG.md
common common
default-language: Haskell2010
ghc-options:
-Weverything
-Wno-all-missed-specialisations
-Wno-implicit-prelude
-Wno-missed-specialisations
-Wno-missing-import-lists
-Wno-missing-local-signatures
-Wno-monomorphism-restriction
-Wno-name-shadowing
-Wno-safe
-Wno-unsafe
if (impl(ghc >= 8.8))
ghc-options: -Wno-missing-deriving-strategies
if (impl(ghc >= 8.10))
ghc-options:
-Wno-missing-safe-haskell-mode
-Wno-prepositive-qualified-module
library
import: common
hs-source-dirs: src
exposed-modules:
Control.Carrier.Parser.Church
Control.Effect.Parser
Control.Effect.Parser.Notice
Control.Effect.Parser.Source
Control.Effect.Parser.Span
other-modules:
Control.Effect.Parser.GHCI
Control.Effect.Parser.Lens
build-depends:
, base >= 4.12 && < 5
, containers >= 0.5 && < 0.7
, fused-effects ^>= 1.1
, parsers ^>= 0.12
, prettyprinter ^>= 1.7
, transformers >= 0.4 && < 0.7
test-suite test
import: common
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Test.hs
build-depends:
, base
, containers
, fused-effects-parser
, hedgehog >= 1 && <2
, parsers
, tasty >= 1.2 && <2
, tasty-hedgehog >= 1 && <2
, tasty-hunit ^>= 0.10