-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmicroaeson.cabal
125 lines (102 loc) · 3.71 KB
/
microaeson.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
cabal-version: 2.0
name: microaeson
version: 0.1.0.2
synopsis: A tiny JSON library with light dependency footprint
license: GPL-3
license-file: LICENSE
author: Herbert Valerio Riedel
maintainer: Andreas Abel
category: Text, Web, JSON
build-type: Simple
description: {
@microaeson@ aims to provide a [RFC 8259](https://tools.ietf.org/html/rfc8259) compliant JavaScript Object Notation (JSON) implementation.
The [microaeson](https://hackage.haskell.org/package/microaeson) package provides a smaller subset of the [aeson](https://hackage.haskell.org/package/aeson) API with less dependencies and a simpler implementation.
.
The API is designed in such a way to allow to easily convert client code written against @microaeson@'s API to use the full [aeson](https://hackage.haskell.org/package/aeson) API.
}
tested-with:
GHC == 9.12.0
GHC == 9.10.1
GHC == 9.8.2
GHC == 9.6.6
GHC == 9.4.8
GHC == 9.2.8
GHC == 9.0.2
GHC == 8.10.7
GHC == 8.8.4
GHC == 8.6.5
GHC == 8.4.4
GHC == 8.2.2
GHC == 8.0.2
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: https://github.com/haskell-hvr/microaeson.git
library
default-language: Haskell2010
other-extensions: CPP
DeriveDataTypeable
DeriveGeneric
FlexibleInstances
GeneralizedNewtypeDeriving
MagicHash
OverloadedStrings
hs-source-dirs: src
exposed-modules: Data.Aeson.Micro
other-modules: Data.Aeson.Micro.Parser
Data.Aeson.Micro.Scanner
build-depends: array ^>= 0.5.1.0
, base >= 4.8.0.0 && < 5
, bytestring >= 0.10.6.0 && < 0.13
, containers ^>= 0.5.6.2
|| ^>= 0.6.0.1
|| ^>= 0.7
, deepseq ^>= 1.4.1.1
|| ^>= 1.5.0.0
, fail ^>= 4.9.0.0
, text ^>= 1.2.2.2
|| ^>= 2.0
|| ^>= 2.1
build-tool-depends: alex:alex >= 3.2.0
ghc-options:
-Wall
-Wcompat
-Wnoncanonical-monad-instances
if impl(ghc < 8.8)
ghc-options:
-Wnoncanonical-monadfail-instances
test-suite microaeson
default-language: Haskell2010
hs-source-dirs: src-tests
main-is: tests.hs
type: exitcode-stdio-1.0
-- internal dependency
build-depends: microaeson
-- constraints inherited via lib:microaeson component
build-depends: base
, bytestring
, containers
, text
-- dependencies requiring constraints
build-depends: aeson ^>= 1.3.1.0
|| ^>= 1.4.7.1
|| ^>= 1.5.6.0
|| ^>= 2.0.3.0
|| ^>= 2.1.0.0
|| ^>= 2.2.0.0
, QuickCheck >= 2.11.3 && < 2.16
, quickcheck-instances ^>= 0.3.16
, tasty >= 1.0.1.1 && < 1.6
, tasty-quickcheck >= 0.10 && < 1
, unordered-containers ^>= 0.2.8.0
, vector ^>= 0.12.0.1
|| ^>= 0.13.0.0
ghc-options:
-Wall
-Wcompat
-Wnoncanonical-monad-instances
if impl(ghc < 8.8)
ghc-options:
-Wnoncanonical-monadfail-instances