-
Notifications
You must be signed in to change notification settings - Fork 4
/
jijo.cabal
126 lines (118 loc) · 2.43 KB
/
jijo.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
cabal-version: 2.2
name: jijo
version: 0.1
synopsis: Bidirectional JSON serialization
description:
jijo (JSON in, JSON out) is a JSON schema EDSL based on
composable abstractions, @Applicative@ and @Category@.
.
Features include:
.
* Schema is independent from the domain types, unlike derived instances.
* Bidirectional definitions, no risk for serialization/deserialization code
to get out of sync.
* Structured validation errors, not strings.
* Accumulation of validation errors, not failure on the first one.
license: BSD-3-Clause
license-file: LICENSE
extra-source-files:
ChangeLog.md
author: Vladislav Zavialov, Artyom Kazak
maintainer: Monadfix <[email protected]>
category: Text, Web, JSON
homepage: https://github.com/monadfix/jijo
bug-reports: https://github.com/monadfix/jijo/issues
build-type: Simple
tested-with:
GHC==8.4.4
GHC==8.6.5
GHC==8.8.1
source-repository head
type: git
location: git://github.com/monadfix/jijo.git
library
exposed-modules:
Jijo.Definition
Jijo.Path
Jijo.Validation
Jijo.RecordField
Jijo.RecordField.TH
build-depends:
base < 5,
text,
containers,
unordered-containers,
transformers,
tagged,
profunctors,
aeson,
dlist,
scientific,
vector,
template-haskell
hs-source-dirs:
lib
default-language:
Haskell2010
ghc-options:
-Wall
-Wcompat
test-suite jijo-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Jijo.DefinitionSpec
Jijo.PathSpec
hs-source-dirs:
test
default-extensions:
DataKinds
TypeOperators
DeriveFunctor
DeriveGeneric
FlexibleInstances
KindSignatures
MultiParamTypeClasses
ScopedTypeVariables
TypeApplications
StrictData
LambdaCase
RecordWildCards
OverloadedStrings
GeneralizedNewtypeDeriving
DerivingStrategies
UndecidableInstances
RankNTypes
ghc-options:
-Wall
-Wcompat
-threaded
-rtsopts
-with-rtsopts=-N
build-depends:
aeson,
base,
jijo,
bytestring,
containers,
dlist,
email-validate,
hedgehog,
hspec,
hspec-discover,
hw-hspec-hedgehog,
lens,
lens-aeson,
megaparsec,
optparse-applicative,
profunctors,
scientific,
tagged,
template-haskell,
text,
transformers,
unordered-containers,
uuid,
vector
build-tool-depends: hspec-discover:hspec-discover
default-language: Haskell2010