-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrfp-service.cabal
141 lines (135 loc) · 2.67 KB
/
rfp-service.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.32.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 5af9d1ba6d40a23b97443c127bb81e2282046c57aa0d9d0862941fb517e22810
name: rfp-service
version: 0.0.5.2
synopsis: RFPService service
description: RFPService Service
category: Web
author: RFP <[email protected]>
maintainer: RFP <[email protected]>
copyright: 2020 RFP
license: MIT
license-file: LICENSE
build-type: Simple
source-repository head
type: git
location: https://www.gitlab.com/reiknirit/rfp-service
library
exposed-modules:
Config
Models
API
API.Service
API.Attachment
API.Submission
API.User
Cli
Elasticsearch
Utils
Logger
Worker.Base
Worker.RFPWorker
other-modules:
Cache
Paths_rfp_service
hs-source-dirs:
src
ghc-options: -fwarn-unused-imports
build-depends:
aeson
, base >=4.9 && <5.0
, bcrypt
, bloodhound
, bytestring
, containers
, directory
, dotenv
, fast-logger
, filepath
, hedis
, hip
, hslogger
, http-client
, http-types
, hworker
, monad-control
, monad-logger
, mtl
, optparse-applicative
, parser-combinators
, persistent ==2.9.2
, persistent-postgresql
, persistent-template ==2.6.0
, safe
, sendgrid-v3
, servant
, servant-multipart
, servant-server
, text
, time
, transformers
, unordered-containers
, uuid
, wai
, wai-cors
, wai-extra
, warp
default-language: Haskell2010
executable rfp-service
main-is: app/Main.hs
other-modules:
Paths_rfp_service
ghc-options: -fwarn-unused-imports
build-depends:
base >=4.9 && <5.0
, base64-bytestring
, bytestring
, dotenv
, fast-logger
, hedis
, hslogger
, http-types
, hworker
, monad-logger
, mtl
, optparse-applicative
, persistent ==2.9.2
, persistent-postgresql
, persistent-template ==2.6.0
, rfp-service
, text
, time
, utf8-string
, wai
, wai-cors
, wai-extra
, warp
default-language: Haskell2010
executable rfp-worker
main-is: app/Worker.hs
other-modules:
Paths_rfp_service
ghc-options: -fwarn-unused-imports
build-depends:
base >=4.9 && <5.0
, dotenv
, fast-logger
, hedis
, hslogger
, http-types
, hworker
, mtl
, optparse-applicative
, persistent ==2.9.2
, persistent-postgresql
, persistent-template ==2.6.0
, rfp-service
, text
, time
, wai-cors
, wai-extra
default-language: Haskell2010