-
Notifications
You must be signed in to change notification settings - Fork 6
/
aeson-gadt-th.cabal
65 lines (60 loc) · 1.91 KB
/
aeson-gadt-th.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
cabal-version: 1.24
name: aeson-gadt-th
version: 0.2.5.2
synopsis: Derivation of Aeson instances for GADTs
category: JSON
description: Template Haskell for generating ToJSON and FromJSON instances for GADTs. See <https://github.com/obsidiansystems/aeson-gadt-th/blob/master/README.md README.md> for examples.
license: BSD3
license-file: LICENSE
author: Obsidian Systems LLC
maintainer: [email protected]
copyright: 2019 Obsidian Systems LLC
build-type: Simple
tested-with:
GHC ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.2
extra-source-files: README.md
ChangeLog.md
flag build-readme
default: True
library
exposed-modules: Data.Aeson.GADT.TH
build-depends: base >= 4.8 && < 4.20
, aeson >= 1.3 && < 2.3
, containers >= 0.5 && < 0.7
, dependent-sum >= 0.4 && < 0.8
, transformers >= 0.5 && < 0.7
, template-haskell >= 2.11.0 && < 2.22
, th-abstraction >= 0.4 && < 0.8
if impl(ghc < 8.2)
build-depends: dependent-sum < 0.6.2.2
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
executable readme
if !flag(build-readme)
buildable: False
build-depends: base
, aeson
, dependent-sum
, dependent-sum-template >= 0.2 && < 0.3
, dependent-map >= 0.3 && < 0.5
, aeson-gadt-th
default-language: Haskell2010
main-is: README.lhs
ghc-options: -Wall -optL -q
test-suite aeson-gadt-th-test
type: exitcode-stdio-1.0
build-depends: base
, aeson
, aeson-qq
, dependent-sum
, aeson-gadt-th
, hspec
, HUnit
default-language: Haskell2010
hs-source-dirs: test
main-is: Test.hs
other-modules: Expectations
source-repository head
type: git
location: git://github.com/obsidiansystems/aeson-gadt-th.git