-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmatchmaker.cabal
200 lines (193 loc) · 5.62 KB
/
matchmaker.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
cabal-version: 3.0
name: matchmaker
version: 0.0.1.0
homepage: https://github.com/haskellfoundation/matchmaker#readme
bug-reports: https://github.com/haskellfoundation/matchmaker/issues
author: Hécate Moonlight & contributors
maintainer: Hécate Moonlight & contributors
license: Apache-2.0
build-type: Simple
extra-source-files:
CHANGELOG.md
LICENSE
README.md
source-repository head
type: git
location: https://github.com/haskellfoundation/matchmaker
common common-extensions
default-extensions: ConstraintKinds
DataKinds
DeriveAnyClass
DeriveGeneric
DerivingStrategies
DerivingVia
DuplicateRecordFields
FlexibleContexts
FlexibleInstances
GeneralizedNewtypeDeriving
InstanceSigs
KindSignatures
MultiParamTypeClasses
NamedFieldPuns
OverloadedStrings
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TemplateHaskell
TypeApplications
TypeOperators
default-language: Haskell2010
common common-ghc-options
ghc-options: -Wall
-Wcompat
-Werror
-Wno-deprecations
-Widentities
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wpartial-fields
-Wredundant-constraints
-fhide-source-paths
-Wno-unused-do-bind
-fwrite-ide-info
-hiedir=.hie
-haddock
-j
common common-rts-options
ghc-options: -rtsopts
-threaded
-with-rtsopts=-N
library
import: common-extensions
import: common-ghc-options
hs-source-dirs:
src
exposed-modules:
DB
DB.ContributorCall
DB.Helpers
DB.Organisation
DB.Repository
DB.User
Environment
Foundation
Handler
Handler.Home
Handler.Login
Handler.Login.Signin
Handler.Signup
Handler.Account.Create
Handler.User
ImportYesod
Model.UserModel
Server
Templates
Templates.Types
Templates.Helpers
Templates.Partials.FlashAlerts
Web.FlashAlerts
Web.Form
Web.Form.Types
Web.Helpers
Web.Middleware
Web.Router
Web.Sessions
Web.Sessions.Server
Web.Sessions.Types
Web.Types
build-depends:
aeson ^>= 1.5,
base ^>= 4.14,
base64-bytestring ^>= 1.2,
colourista ^>= 0.1,
containers ^>= 0.6.4,
cryptonite ^>= 0.28,
data-default-class ^>= 0.1,
envparse ^>= 0.4,
fast-logger ^>= 3.0.3,
ginger ^>= 0.10,
hashable ^>= 1.3,
http-client ^>= 0.5.10,
http-client-tls ^>= 0.3.5,
http-types ^>= 0.12,
monad-control ^>= 1.0,
monad-logger ^>= 0.3,
mtl ^>= 2.2.2,
password ^>= 3.0,
pg-entity ^>= 0.0,
pg-transact ^>= 0.3.2,
postgresql-simple ^>= 0.6,
postgresql-simple-migration ^>= 0.1,
relude ^>= 1.0,
resource-pool ^>= 0.2,
rowdy-yesod == 0.0.1.*,
safe-exceptions ^>= 0.1,
scotty ^>= 0.12,
stm ^>= 2.5,
string-interpolate ^>= 0.3,
template-haskell ^>= 2.16,
text ^>= 1.2,
time ^>= 1.9,
unordered-containers ^>= 0.2,
uuid ^>= 1.3,
validation-selective ^>= 0.1,
vector ^>= 0.12.1,
wai ^>= 3.2,
wai-cors ^>= 0.2,
wai-extra ^>= 3.1,
wai-logger ^>= 2.3.6,
wai-middleware-auth ^>= 0.2,
wai-middleware-static ^>= 0.9,
warp ^>= 3.3,
yesod-core == 1.6.*,
mixins: base hiding (Prelude)
, relude ( Relude as Prelude
, Relude.Unsafe
, Relude.Monad
)
executable matchmaker
import: common-extensions
import: common-ghc-options
import: common-rts-options
main-is: Main.hs
hs-source-dirs:
app
build-depends:
base
, matchmaker
, relude
mixins: base hiding (Prelude)
, relude ( Relude as Prelude
, Relude.Unsafe
, Relude.Monad
)
test-suite matchmaker-test
import: common-extensions
import: common-ghc-options
import: common-rts-options
ghc-options: -Wdeprecations
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test
build-depends:
, base
, hspec
, hspec-expectations-lifted
, hspec-pg-transact == 0.1.0.3
, matchmaker
, password
, postgresql-simple
, postgresql-simple-migration
, relude
, uuid
, vector
other-modules:
DB.UserSpec
DB.SpecHelpers
DB.OrganisationSpec
Web.AccountCreationSpec
mixins: base hiding (Prelude)
, relude ( Relude as Prelude
, Relude.Unsafe)