-
Notifications
You must be signed in to change notification settings - Fork 0
/
opentypes.cabal
46 lines (43 loc) · 1.69 KB
/
opentypes.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
name: opentypes
version: 0.0.1
cabal-version: >=1.2
build-type: Simple
license: BSD3
license-file: ""
maintainer: Michael J. Palmer
stability: experimental
bug-reports: [email protected]
synopsis: Open Types Framework
description: A simple interface and set of Template Haskell macros for encoding open types in Haskell as a solution to the Expression Problem.
author: Michael J. Palmer
data-dir: ""
library
build-depends: QuickCheck -any, base -any, containers -any,
template-haskell ==2.8.0.0
exposed-modules: OpenTypes.Test.BadModule OpenTypes.Finalization
OpenTypes.Interface OpenTypes.WrapConstructors
exposed: True
buildable: True
hs-source-dirs: src
other-modules: OpenTypes.Test.TwoParam OpenTypes.Test.OpenInterface
OpenTypes.Test.Fragment2 OpenTypes.Test.Fragment1
executable opentypes
build-depends: QuickCheck -any, base -any, containers -any,
template-haskell ==2.8.0.0
main-is: Main.hs
buildable: True
hs-source-dirs: src
other-modules: OpenTypes.Test.BadModule OpenTypes.Test.TwoParam
OpenTypes.Test.OpenInterface OpenTypes.Test.Fragment2
OpenTypes.Test.Fragment1
test-suite test-opentypes
build-depends: QuickCheck -any, base -any, containers -any,
template-haskell ==2.8.0.0
type: exitcode-stdio-1.0
main-is: Main.hs
buildable: True
hs-source-dirs: src
other-modules: OpenTypes.WrapConstructors OpenTypes.Interface
OpenTypes.Finalization OpenTypes.Test.TwoParam
OpenTypes.Test.OpenInterface OpenTypes.Test.Fragment2
OpenTypes.Test.Fragment1