-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPLGrammar.cabal
59 lines (48 loc) · 1.71 KB
/
PLGrammar.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
cabal-version: 3.8
-- Initial PLGrammar.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: PLGrammar
version: 0.4.0.0
synopsis: Describe grammars such that they can be round-tripped
between two types refered to as the printing and parsing
type.
-- description:
-- license:
license-file: LICENSE
author: Samuel A. Yallop
maintainer: syallop@gmail.com
-- copyright:
-- category:
build-type: Simple
library
exposed-modules: PLGrammar
-- other-modules:
-- other-extensions:
build-depends: base >= 4.12
, DSL-Compose
, PLLabel >= 0.1
, Reversible >= 0.1
, text
-- hs-source-dirs:
default-language: Haskell2010
ghc-options: -Wall -fwarn-incomplete-patterns -Werror=incomplete-patterns
test-suite hspec
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: Test
other-modules: PLGrammar.TestSpec
build-depends: base >=4.7
, containers >= 0.5
, semigroups
, text
, hspec
, QuickCheck
, quickcheck-instances
, PLLabel
, PLGrammar
, Reversible
default-language: Haskell2010
other-extensions: OverloadedStrings
, GeneralizedNewtypeDeriving
, LambdaCase
ghc-options: -Wall -fwarn-incomplete-patterns -Werror=incomplete-patterns