This repository has been archived by the owner on Jan 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Mirza.cabal
233 lines (222 loc) · 8.69 KB
/
Mirza.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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
name: Mirza
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/data61/Mirza
license: BSD3
license-file: LICENSE
author: Sara Falamaki
maintainer: [email protected]
copyright: 2017, 2018, 2019 CSIRO
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
default-extensions: OverloadedStrings
, FlexibleContexts
, FlexibleInstances
hs-source-dirs: src
exposed-modules: Mirza.BusinessRegistry.API
, Mirza.BusinessRegistry.Client.Servant
, Mirza.BusinessRegistry.Auth
, Mirza.BusinessRegistry.Database.Migrate
, Mirza.BusinessRegistry.Database.Schema
, Mirza.BusinessRegistry.Database.Schema.V0001
, Mirza.BusinessRegistry.Database.Schema.V0002
, Mirza.BusinessRegistry.Handlers.Business
, Mirza.BusinessRegistry.Handlers.Health
, Mirza.BusinessRegistry.Handlers.Keys
, Mirza.BusinessRegistry.Handlers.Location
, Mirza.BusinessRegistry.Main
, Mirza.BusinessRegistry.Service
, Mirza.BusinessRegistry.Handlers.Users
, Mirza.BusinessRegistry.Types
, Mirza.BusinessRegistry.SqlUtils
, Mirza.Common.Beam
, Mirza.Common.GS1BeamOrphans
, Mirza.Common.Types
, Mirza.Common.Utils
, Mirza.Common.Time
, Mirza.SupplyChain.API
, Mirza.SupplyChain.Auth
, Mirza.SupplyChain.Client.Servant
, Mirza.SupplyChain.Database.Migrate
, Mirza.SupplyChain.Database.Schema
, Mirza.SupplyChain.Database.Schema.V0001
, Mirza.SupplyChain.Handlers.Contacts
, Mirza.SupplyChain.Handlers.Health
, Mirza.SupplyChain.EventUtils
, Mirza.SupplyChain.Handlers.Queries
, Mirza.SupplyChain.Handlers.Signatures
, Mirza.SupplyChain.Handlers.EventRegistration
, Mirza.SupplyChain.Handlers.Users
, Mirza.SupplyChain.Main
, Mirza.SupplyChain.QueryUtils
, Mirza.SupplyChain.Service
, Mirza.SupplyChain.Types
, Mirza.SupplyChain.SqlUtils
other-modules: Mirza.SupplyChain.ErrorUtils
build-depends: base >= 4.7 && < 5
, GS1Combinators
, aeson
, base64-bytestring
, beam-core
, beam-migrate
, beam-postgres
, bytestring
, email-validate
, hoist-error >= 0.2
, http-client
, insert-ordered-containers
, katip >= 0.5.4
, lens
, mtl
, optparse-applicative
, postgresql-simple
, random
, resource-pool >= 0.2.3
, scrypt
, servant
, servant-client >= 0.13
, servant-flatten
, servant-server
, servant-swagger
, servant-swagger-ui
, swagger2
, text
, time
, transformers >= 0.4
, Unique
, uuid
, uuid-types
, wai
, warp
, jose
, cryptonite
default-language: Haskell2010
executable supplyChainServer
hs-source-dirs: app
main-is: SupplyChainServer.hs
ghc-options: -threaded -Wall -Werror -rtsopts -with-rtsopts=-N
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, Mirza
executable businessRegistry
default-language: Haskell2010
hs-source-dirs: app
main-is: BusinessRegistry.hs
ghc-options: -threaded -Wall -Werror -rtsopts -with-rtsopts=-N
build-depends: base >= 4.7 && < 5
, Mirza
test-suite supplyChainServer-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Mirza/SupplyChain/Spec.hs
other-modules: Mirza.Common.Tests.ServantUtils
, Mirza.Common.Tests.Utils
, Mirza.Common.Tests.InitClient
, Mirza.SupplyChain.Tests.Service
, Mirza.SupplyChain.Tests.Dummies
, Mirza.SupplyChain.Tests.Client
, Mirza.SupplyChain.Tests.Generate
, Mirza.SupplyChain.Tests.Citrus
, Mirza.SupplyChain.Tests.Utils
, Mirza.BusinessRegistry.Tests.Utils
, Mirza.BusinessRegistry.Tests.Generate
default-extensions: OverloadedStrings
build-depends: base
, base64-bytestring
, GS1Combinators
, Mirza
, resource-pool >= 0.2.3
, beam-core
, beam-postgres
, bytestring
, email-validate
, hspec
, hspec-core
, http-client
, mtl
, network
, postgresql-simple
, process
, scrypt
, servant
, servant-server
, text
, time
, uuid
, unordered-containers
, hashable
, tasty
, tasty-hspec
, tasty-hunit
, transformers
, hspec-expectations
, wai
, warp
, servant-client
, katip
, temporary
, jose
, aeson
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Werror
test-suite businessRegistry-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Mirza/BusinessRegistry/Spec.hs
other-modules: Mirza.Common.Tests.ServantUtils
, Mirza.Common.Tests.Utils
, Mirza.Common.Tests.InitClient
, Mirza.BusinessRegistry.Tests.Keys
, Mirza.BusinessRegistry.Tests.Dummies
, Mirza.BusinessRegistry.Tests.Business
, Mirza.BusinessRegistry.Tests.Generate
, Mirza.BusinessRegistry.Tests.Client
, Mirza.Common.Tests.Utils
, Mirza.BusinessRegistry.Tests.Utils
, Mirza.BusinessRegistry.Tests.Generate
default-extensions: OverloadedStrings
build-depends: base
, base64-bytestring
, GS1Combinators
, Mirza
, resource-pool >= 0.2.3
, beam-postgres
, beam-core
, bytestring
, email-validate
, directory
, filepath
, hspec
, hspec-core
, http-client
, http-types
, MissingH
, mtl
, network
, postgresql-simple
, process
, servant
, text
, time
, tasty
, tasty-hspec
, tasty-hunit
, transformers
, hspec-expectations
, wai
, warp
, servant-client
, katip
, uuid
, temporary
, jose
, aeson
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Werror
source-repository head
type: git
location: https://github.com/data61/Mirza