forked from thsutton/aeson-diff
-
Notifications
You must be signed in to change notification settings - Fork 3
/
aeson-diff.cabal
164 lines (154 loc) · 3.5 KB
/
aeson-diff.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
cabal-version: 2.0
-- This file has been generated from package.yaml by hpack version 0.37.0.
--
-- see: https://github.com/sol/hpack
name: aeson-diff
version: 1.2.0.0
synopsis: Extract and apply patches to JSON documents.
description: This is a small library for working with changes to JSON documents. It includes a library and two command-line executables in the style of the diff(1) and patch(1) commands available on many systems.
category: JSON, Web, Algorithms
homepage: https://github.com/clintonmead/aeson-diff#readme
bug-reports: https://github.com/clintonmead/aeson-diff/issues
author: Thomas Sutton,
Janus Troelsen <[email protected]>,
Clinton Mead <[email protected]>
maintainer: Clinton Mead <[email protected]>
copyright: Thomas Sutton,
Janus Troelsen <[email protected]>,
Clinton Mead <[email protected]>,
and others
license: BSD3
license-file: LICENSE
build-type: Custom
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: https://github.com/clintonmead/aeson-diff
custom-setup
setup-depends:
Cabal
, base
, cabal-doctest
library
exposed-modules:
Data.Aeson.Diff
Data.Aeson.Patch
Data.Aeson.Pointer
Data.Aeson.Pointer.ArrayOffset
other-modules:
Data.Aeson.Patch.Generic.Utilities
Data.Aeson.Patch.Utilities
Data.Aeson.Pointer.ArrayOffset.Utilities
hs-source-dirs:
lib
default-extensions:
ApplicativeDo
DerivingStrategies
DerivingVia
LambdaCase
PatternSynonyms
OverloadedStrings
RecordWildCards
TypeData
ViewPatterns
build-depends:
aeson
, autodocodec
, base
, bytestring
, dlist
, edit-distance-vector
, monoid-extras
, scientific
, text
, unordered-containers
, vector
, yaml
default-language: GHC2021
executable json-diff
main-is: diff.hs
other-modules:
Codec
Paths_aeson_diff
autogen-modules:
Paths_aeson_diff
hs-source-dirs:
src
build-depends:
aeson
, aeson-diff
, base
, bytestring
, optparse-applicative
, yaml
default-language: GHC2021
executable json-patch
main-is: patch.hs
other-modules:
Codec
Paths_aeson_diff
autogen-modules:
Paths_aeson_diff
hs-source-dirs:
src
build-depends:
aeson
, aeson-diff
, base
, bytestring
, optparse-applicative
, yaml
default-language: GHC2021
test-suite doctests
type: exitcode-stdio-1.0
main-is: doctests.hs
other-modules:
Paths_aeson_diff
Build_doctests
autogen-modules:
Paths_aeson_diff
Build_doctests
hs-source-dirs:
test
ghc-options: -threaded
build-depends:
base
, doctest
default-language: GHC2021
test-suite examples
type: exitcode-stdio-1.0
main-is: examples.hs
other-modules:
Paths_aeson_diff
autogen-modules:
Paths_aeson_diff
hs-source-dirs:
test
build-depends:
Glob
, aeson
, aeson-diff
, base
, bytestring
, directory
, filepath
default-language: GHC2021
test-suite properties
type: exitcode-stdio-1.0
main-is: properties.hs
other-modules:
Paths_aeson_diff
autogen-modules:
Paths_aeson_diff
hs-source-dirs:
test
build-depends:
QuickCheck
, aeson
, aeson-diff
, base
, bytestring
, vector
default-language: GHC2021