-
Notifications
You must be signed in to change notification settings - Fork 0
/
generic-xmlpickler.cabal
60 lines (56 loc) · 1.57 KB
/
generic-xmlpickler.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
name: generic-xmlpickler
version: 0.1.0.6
description: Generic generation of HXT XmlPickler instances using GHC Generics.
synopsis: Generic generation of HXT XmlPickler instances using GHC Generics
category: XML, Data
cabal-version: >= 1.8
author: Silk
copyright: (c) 2015, Silk
maintainer: [email protected]
homepage: http://github.com/silkapp/generic-xmlpickler
license: BSD3
license-file: LICENSE
build-type: Simple
tested-with:
GHC == 7.4.2
, GHC == 7.6.3
, GHC == 7.8.4
, GHC == 7.10.3
, GHC == 8.0.2
, GHC == 8.2.1
, GHC == 8.4.4
, GHC == 8.6.5
, GHC == 8.8.1
extra-source-files:
CHANGELOG.md
LICENSE
README.md
source-repository head
type: git
location: https://github.com/silkapp/regular-xmlpickler.git
library
ghc-options: -Wall
hs-source-dirs: src
exposed-modules: Generics.XmlPickler
build-depends:
base >= 4.5 && < 4.14
, generic-deriving >= 1.6 && < 1.14
, hxt >= 9.2 && < 9.4
, text
if impl(ghc < 7.6)
build-depends: ghc-prim >= 0.2 && < 0.5
test-suite tests
ghc-options: -Wall
hs-source-dirs: tests
main-is: Main.hs
other-modules: PickleUtils
type: exitcode-stdio-1.0
build-depends:
base >= 4.5 && < 5
, generic-xmlpickler
, hxt >= 9.2 && < 9.4
, tasty >= 0.10 && < 1.3
, tasty-hunit >= 0.9 && < 0.11
, tasty-th == 0.1.*
if impl(ghc < 7.6)
build-depends: ghc-prim >= 0.2 && < 0.5