forked from NCrashed/aeson-injector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaeson-injector.cabal
65 lines (61 loc) · 1.64 KB
/
aeson-injector.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
name: aeson-injector
version: 1.1.0.0
synopsis: Injecting fields into aeson values
description: See README.md
license: MIT
license-file: LICENSE
author: Anton Gushcha
maintainer: [email protected]
copyright: 2016-2017 Anton Gushcha
category: Data, JSON, Web
build-type: Simple
cabal-version: >=1.18
tested-with:
GHC == 7.10.3
, GHC == 8.0.1
, GHC == 8.0.2
, GHC == 8.2.1
extra-source-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/NCrashed/aeson-injector
library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules:
Data.Aeson.Unit
Data.Aeson.WithField
build-depends:
base >= 4.7 && < 4.11
, aeson >= 0.11 && < 1.3
, bifunctors >= 5.2 && < 6
, deepseq >= 1.4 && < 2
, hashable >= 1.0 && < 2.0
, lens >= 4.13 && < 5
, servant-docs >= 0.7 && < 0.12
, swagger2 >= 2.1.2.1 && < 3.0
, text >= 1.2 && < 2.0
, unordered-containers >= 0.2.7 && < 0.3
test-suite test-aeson-injector
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends:
base
, aeson
, aeson-injector
, containers
, HUnit >= 1.3
, lens
, QuickCheck >= 2.8.2
, quickcheck-text
, scientific
, swagger2
, tasty >= 0.11
, tasty-hunit >= 0.9
, tasty-quickcheck >= 0.8
, text
, vector