-
Notifications
You must be signed in to change notification settings - Fork 30
/
argonaut.cabal
108 lines (105 loc) · 5.25 KB
/
argonaut.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
102
103
104
105
106
107
108
name: argonaut
version: 0.2
cabal-version: >=1.18
build-type: Simple
license: BSD3
copyright: (c) 2013 Sean Parsons
(c) 2013 Mark Hibberd
(c) 2013 Tony Morris
maintainer: Sean Parsons
Mark Hibberd
Tony Morris
stability: experimental
homepage: https://github.com/argonaut-io/argonaut-hs
bug-reports: https://github.com/argonaut-io/argonaut-hs/issues
synopsis: Fast and powerful JSON manipulation
description: JSON library of justice.
category: Text, JSON
author: Sean Parsons
Mark Hibberd
Tony Morris
extra-source-files: README.md
benchmark/*.cabal
benchmark/*.hs
benchmark/json-data/*.json
library
build-depends: base ==4.*,
unordered-containers >=0.2.2.3,
vector >=0.10.9.1,
lens >=4.1.2,
mtl >=2.1.2,
text >= 0.11.3.1,
attoparsec >=0.11.2.1,
template-haskell >= 2.8.0.0,
bytestring >= 0.10.4.0,
hashable >= 1.2.1.0,
scientific >= 0.2.0.2,
semigroupoids >= 4.3
ghc-options: -rtsopts
-Wall
-O2
exposed-modules: Data.Argonaut
Data.Argonaut.Core
Data.Argonaut.Parser
Data.Argonaut.Printer
Data.Argonaut.Encode
Data.Argonaut.Decode
exposed: True
buildable: True
default-language: Haskell2010
default-extensions: TemplateHaskell
CPP
hs-source-dirs: src
test-suite tests
build-depends: base ==4.*,
unordered-containers >=0.2.2.3,
vector >=0.10.9.1,
lens >=4.1.2,
mtl >=2.1.2,
text >= 0.11.3.1,
attoparsec >=0.11.2.1,
template-haskell >= 2.8.0.0,
hashable >= 1.2.1.0,
bytestring >= 0.10.4.0,
scientific >= 0.2.0.2,
argonaut,
QuickCheck -any,
hspec -any
ghc-options: -rtsopts
-Wall
-O2
-threaded
type: exitcode-stdio-1.0
main-is: Spec.hs
buildable: True
default-language: Haskell2010
default-extensions: TemplateHaskell
CPP
hs-source-dirs: test
benchmark argonaut-bench
type: exitcode-stdio-1.0
hs-source-dirs: benchmark
buildable: True
default-language: Haskell2010
default-extensions: TemplateHaskell
CPP
main-is: MainBenchmarkSuite.hs
build-depends: base ==4.*,
unordered-containers >=0.2.2.3,
vector >=0.10.9.1,
lens >=4.1.2,
mtl >=2.1.2,
criterion >= 0.8.0.0,
directory >= 1.2.0.1,
aeson >= 0.7.0.3,
text >= 0.11.3.1,
attoparsec >=0.11.2.1,
template-haskell >= 2.8.0.0,
hashable >= 1.2.1.0,
bytestring >= 0.10.4.0,
scientific >= 0.2.0.2,
attoparsec >= 0.10.4.0,
argonaut
ghc-options: -rtsopts
-Wall
-O2