forked from turboMaCk/aeson-combinators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaeson-combinators.cabal
101 lines (93 loc) · 3.08 KB
/
aeson-combinators.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
cabal-version: >=1.10
name: aeson-combinators
version: 0.0.5.0
synopsis: Aeson combinators for dead simple JSON decoding
description:
Low overhead value space `Decoder`
on top of Aeson's Parser for combinator style decoding.
bug-reports: https://github.com/turboMaCk/aeson-combinators/issues
license: BSD3
license-file: LICENSE
author: Marek Fajkus <[email protected]>
maintainer: Marek Fajkus <[email protected]>
copyright: (c) 2020 Marek Fajkus
stability: experimental
category: Text, Web, JSON
build-type: Simple
extra-source-files: README.md
, CHANGELOG.md
homepage: https://github.com/turboMaCk/aeson-combinators
tested-with: GHC == 8.4.4
, GHC == 8.6.5
, GHC == 8.8.3
, GHC == 8.8.4
, GHC == 8.10.1
, GHC == 8.10.3
, GHCJS == 8.6.0.1
Flag doctest
default: False
manual: True
library
exposed-modules: Data.Aeson.Combinators.Decode
, Data.Aeson.Combinators.Encode
-- other-modules:
-- other-extensions:
build-depends: base >= 4 && < 5
, bytestring
, text
, aeson
, scientific
, vector
, unordered-containers
, fail
, time
, time-compat
, uuid-types
, containers
, unordered-containers
, void
, scientific
hs-source-dirs: lib
default-language: Haskell2010
hs-source-dirs: lib
benchmark benchmark
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: benchmarks
build-depends: base
, aeson
, aeson-combinators
, bytestring
, criterion
, deepseq
, text
ghc-options: -Wall
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: JSONDecodeSpec
, JSONEncodeSpec
build-depends: base
, hspec
, aeson-combinators
, bytestring
, text
, aeson
, utf8-string
ghc-options: -Wall
default-language: Haskell2010
test-suite doctest
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: DocTest.hs
default-extensions: OverloadedStrings
if !flag(doctest)
buildable: False
else
build-depends: base
, doctest
source-repository head
type: git
location: https://github.com/turboMaCk/aeson-combinators.git