-
Notifications
You must be signed in to change notification settings - Fork 1
/
domain.cabal
181 lines (170 loc) · 4.08 KB
/
domain.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
cabal-version: 3.0
name: domain
version: 0.1.1.5
synopsis: Codegen helping you define domain models
description:
- For introduction and demo skip to [Readme](#readme).
- For documentation and syntax reference see the "Domain.Docs" module.
- For API documentation refer to the "Domain" module,
which exports the whole API of this package.
category: IDL
homepage: https://github.com/nikita-volkov/domain
bug-reports: https://github.com/nikita-volkov/domain/issues
author: Nikita Volkov <nikita.y.volkov@mail.ru>
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
copyright: (c) 2020 Nikita Volkov
license: MIT
license-file: LICENSE
extra-source-files:
README.md
samples/*.yaml
source-repository head
type: git
location: git://github.com/nikita-volkov/domain.git
library
hs-source-dirs: library
default-extensions:
NoImplicitPrelude
NoMonomorphismRestriction
BangPatterns
BlockArguments
ConstraintKinds
DataKinds
DefaultSignatures
DeriveDataTypeable
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveLift
DeriveTraversable
EmptyDataDecls
FlexibleContexts
FlexibleInstances
FunctionalDependencies
GADTs
GeneralizedNewtypeDeriving
InstanceSigs
LambdaCase
LiberalTypeSynonyms
MagicHash
MultiParamTypeClasses
MultiWayIf
OverloadedLabels
OverloadedStrings
ParallelListComp
PatternGuards
QuasiQuotes
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
StrictData
TemplateHaskell
TupleSections
TypeApplications
TypeFamilies
TypeOperators
default-language: Haskell2010
exposed-modules:
Domain
Domain.Docs
other-modules:
Domain.Attoparsec.General
Domain.Attoparsec.TypeString
Domain.Models.TypeCentricDoc
Domain.Models.TypeString
Domain.Prelude
Domain.Resolvers.TypeCentricDoc
Domain.Text
Domain.TH.InstanceDec
Domain.TH.InstanceDecs
Domain.TH.TypeDec
Domain.YamlUnscrambler.TypeCentricDoc
build-depends:
, attoparsec >=0.13 && <0.15
, base >=4.9 && <5
, bytestring >=0.10 && <0.13
, domain-core ^>=0.1.0.4
, foldl >=1.4.9 && <2
, hashable >=1 && <2
, parser-combinators >=1.3 && <1.4
, template-haskell >=2.13 && <3
, text >=1.2.3 && <3
, th-lego ^>=0.3.0.3
, yaml-unscrambler >=0.1 && <0.2
test-suite loading-demo
type: exitcode-stdio-1.0
hs-source-dirs: loading-demo
main-is: Main.hs
default-language: Haskell2010
build-depends:
, base
, domain
, text
test-suite inline-demo
type: exitcode-stdio-1.0
hs-source-dirs: inline-demo
main-is: Main.hs
default-language: Haskell2010
build-depends:
, base
, domain
, text
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
default-extensions:
NoImplicitPrelude
NoMonomorphismRestriction
BangPatterns
BlockArguments
ConstraintKinds
DataKinds
DefaultSignatures
DeriveDataTypeable
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveLift
DeriveTraversable
EmptyDataDecls
FlexibleContexts
FlexibleInstances
FunctionalDependencies
GADTs
GeneralizedNewtypeDeriving
InstanceSigs
LambdaCase
LiberalTypeSynonyms
MagicHash
MultiParamTypeClasses
MultiWayIf
OverloadedLabels
OverloadedStrings
ParallelListComp
PatternGuards
QuasiQuotes
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
StrictData
TemplateHaskell
TupleSections
TypeApplications
TypeFamilies
TypeOperators
default-language: Haskell2010
main-is: Main.hs
other-modules:
Util.TH
Util.TH.LeafTypes
build-depends:
, domain
, domain-core
, rerebase >=1.10.0.1 && <2
, tasty >=0.12 && <2
, tasty-hunit >=0.9 && <0.11
, template-haskell
, template-haskell-compat-v0208 >=0.1.6 && <0.2
, th-orphans >=0.13 && <0.14