-
Notifications
You must be signed in to change notification settings - Fork 8
/
json-sop.cabal
79 lines (74 loc) · 2.96 KB
/
json-sop.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
name: json-sop
version: 0.2.3
synopsis: Generics JSON (de)serialization using generics-sop
description:
This library contains generic serialization and deserialization functions
implemented using the @<https://hackage.haskell.org/package/generics-sop generics-sop>@
package for use with @<http://hackage.haskell.org/package/aeson aeson>@.
.
license: BSD3
license-file: LICENSE
author: Edsko de Vries <[email protected]>, Andres Löh <[email protected]>
maintainer: [email protected]
category: Generics
build-type: Simple
cabal-version: >=1.10
tested-with: GHC==8.10.7
, GHC==9.2.8
, GHC==9.4.8
, GHC==9.6.6
, GHC==9.8.2
, GHC==9.10.1
source-repository head
type: git
location: https://github.com/well-typed/json-sop
library
exposed-modules: Generics.SOP.JSON
Generics.SOP.JSON.Model
other-modules: Generics.SOP.Util.PartialResult
build-depends: base >= 4.11 && < 4.21,
generics-sop >= 0.2.3 && < 0.6,
-- lens-sop changed API in 0.3
lens-sop >= 0.3 && < 0.4,
tagged >= 0.7 && < 0.9,
aeson >= 1.4 && < 2.3,
vector >= 0.10 && < 0.14,
text >= 1.1 && < 2.2,
unordered-containers >= 0.2 && < 0.3,
time >= 1.4 && < 1.15,
transformers >= 0.3 && < 0.7
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
default-extensions: ScopedTypeVariables
TypeFamilies
RankNTypes
TypeOperators
GADTs
ConstraintKinds
MultiParamTypeClasses
TypeSynonymInstances
FlexibleInstances
FlexibleContexts
DeriveFunctor
DeriveFoldable
DeriveTraversable
DefaultSignatures
KindSignatures
DataKinds
FunctionalDependencies
CPP
other-extensions: OverloadedStrings
PolyKinds
test-suite test-json-sop
type: exitcode-stdio-1.0
main-is: Test_JSON_SOP.hs
default-language: Haskell2010
hs-source-dirs: test
build-depends: base
, json-sop
, aeson
, tasty
, tasty-quickcheck
, generics-sop
ghc-options: -Wall