-
Notifications
You must be signed in to change notification settings - Fork 21
/
aeson-diff.cabal
122 lines (114 loc) · 3.82 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
name: aeson-diff
version: 1.1.0.9
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.
.
homepage: https://github.com/thsutton/aeson-diff
license: BSD3
license-file: LICENSE
author: Thomas Sutton
maintainer: [email protected]
copyright: (c) 2015 Thomas Sutton and others.
category: JSON, Web, Algorithms
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
, CHANGELOG.md
, stack.yaml
, test/data/rfc6902/*.json
, test/data/rfc6902/*.txt
, test/data/cases/*.json
, test/data/cases/*.txt
source-repository HEAD
type: git
location: https://github.com/thsutton/aeson-diff
library
default-language: Haskell2010
hs-source-dirs: lib
exposed-modules: Data.Aeson.Diff
, Data.Aeson.Patch
, Data.Aeson.Pointer
build-depends: base >=4.9 && <4.16
, aeson
, bytestring >= 0.10
, edit-distance-vector
, hashable
, mtl
, scientific
, text
, unordered-containers
, vector
if impl(ghc < 8.0)
build-depends:
semigroups < 0.19
executable json-diff
default-language: Haskell2010
hs-source-dirs: src
main-is: diff.hs
build-depends: base
, aeson
, aeson-diff
, bytestring
, optparse-applicative
, text
executable json-patch
default-language: Haskell2010
hs-source-dirs: src
main-is: patch.hs
build-depends: base
, aeson
, aeson-diff
, bytestring
, optparse-applicative
test-suite properties
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: properties.hs
build-depends: base
, QuickCheck
, aeson
, aeson-diff
, bytestring
, quickcheck-instances
, text
, unordered-containers
, vector
test-suite examples
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: examples.hs
build-depends: base
, Glob
, QuickCheck
, aeson
, aeson-diff
, bytestring
, directory
, filepath
, quickcheck-instances
, text
, unordered-containers
, vector
test-suite doctests
default-language: Haskell2010
hs-source-dirs: test
type: exitcode-stdio-1.0
ghc-options: -threaded
main-is: doctests.hs
build-depends: base
, QuickCheck
, doctest >= 0.9
test-suite hlint-check
buildable: False
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: hlint-check.hs
build-depends: base
, hlint