-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgeneric-aeson.cabal
41 lines (38 loc) · 1.1 KB
/
generic-aeson.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
name: generic-aeson
version: 0.2.0.14
synopsis: Derivation of Aeson instances using GHC generics.
description: Derivation of Aeson instances using GHC generics.
author: Silk
maintainer: [email protected]
license: BSD3
license-file: LICENSE
category: Data
build-type: Simple
cabal-version: >=1.10
extra-source-files:
CHANGELOG.md
LICENSE
README.md
source-repository head
type: git
location: https://github.com/silkapp/generic-aeson.git
library
ghc-options: -Wall
hs-source-dirs: src
exposed-modules:
Generics.Generic.Aeson
Generics.Generic.Aeson.Util
Generics.Generic.IsEnum
build-depends:
base >= 4.4 && < 4.17
, aeson >= 0.6 && < 2.2
, attoparsec >= 0.11 && < 0.15
, generic-deriving >= 1.6 && < 1.15
, mtl >= 2.0 && < 2.4
, tagged >= 0.2 && < 0.9
, text >= 0.11 && < 2.1
, unordered-containers == 0.2.*
, vector >= 0.10 && < 0.13
if impl(ghc < 7.6)
build-depends: ghc-prim
default-language: Haskell2010