forked from jwaldmann/star-exec-presenter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstar-exec-presenter.cabal
243 lines (232 loc) · 8.3 KB
/
star-exec-presenter.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
234
235
236
237
238
239
240
241
242
243
name: star-exec-presenter
version: 2017.0.0
cabal-version: >= 1.8
build-type: Simple
Flag dev
Description: Turn on development settings, like auto-reload templates.
Default: False
Flag library-only
Description: Build for use with "yesod devel"
Default: False
library
exposed-modules: Application
Foundation
Import
Model
Settings
Settings.StaticFiles
Settings.Development
FCA.Basic
FCA.DotGraph
FCA.Helpers
FCA.StarExec
Handler.Home
Handler.Control
Handler.ListHiddenCompetitions
Handler.ListCompetitions
Handler.Registered
Handler.ShowJobPair
Handler.LegacyShowJobPair
Handler.DisplayProof
Handler.LegacyDisplayProof
Handler.ShowJobInfo
Handler.LegacyShowJobInfo
Handler.ShowBenchmarkInfo
Handler.LegacyShowBenchmarkInfo
Handler.ShowSolverInfo
Handler.LegacyShowSolverInfo
Handler.ShowPostProcInfo
Handler.LegacyShowPostProcInfo
Handler.ShowManyJobResults
Handler.LegacyShowManyJobResults
Handler.LegacyShowJobResults
Handler.FlexibleTable
Handler.Competition
Handler.CompetitionYear
Handler.CompetitionWithConfig
Handler.Import
Handler.ListJobPairs
Handler.ListProofs
Handler.ListJobs
Handler.ListBenchmarks
Handler.RenderBenchmark
Handler.ListSolvers
Handler.ListPostProcs
Handler.LegacyListCompetitions
Handler.LegacyListHiddenCompetitions
Handler.Problems
Handler.ShowConfigInfo
Handler.Participant
Handler.Pause
Handler.Resume
Handler.Rerun
Handler.InstallSolvers
Handler.CompetitionText
Handler.Resolve
Handler.Concepts
Handler.Combine
Presenter.Auth
Presenter.CompetitionResults
Presenter.Control.Job
Presenter.Internal.Stringish
Presenter.Model.Additional.Table
Presenter.Model.Competition
Presenter.Model.CompetitionResults
Presenter.Model.Complexity
Presenter.Model.Complexity2015
Presenter.Model.Defaults
Presenter.Model.Entities
Presenter.Model.PersistInstances
Presenter.Model.Query
Presenter.Model.RouteTypes
Presenter.Model.StarExec
Presenter.Model.Types
Presenter.Model
Presenter.PersistHelper
Presenter.Prelude
Presenter.Short
Presenter.Output
Presenter.Processing
Presenter.Registration
Presenter.Registration.Data
Presenter.Registration.Code
Presenter.Registration.Form_2015
Presenter.Registration.Form_2016
Presenter.Registration.Form_2017
Presenter.StarExec.Commands
Presenter.StarExec.Concurrent
Presenter.StarExec.Connection
Presenter.StarExec.JobData
Presenter.StarExec.Urls
Presenter.StarExec.Space
Presenter.Statistics
Presenter.STM
Presenter.Utils.Colors
Presenter.Utils.WidgetMetaRefresh
Presenter.Utils.WidgetTable
Presenter.DOI
Presenter.DOI.Type
Presenter.History
Importer.Parser.LRI
Importer.Interpreter.LRI
Importer.Internal
Importer.LRI
Importer.Parser.UIBK
Importer.Interpreter.UIBK
Importer.UIBK
if flag(dev) || flag(library-only)
cpp-options: -DDEVELOPMENT
ghc-options: -Wall -O0
else
ghc-options: -Wall -O2
extensions: TemplateHaskell
QuasiQuotes
OverloadedStrings
NoImplicitPrelude
CPP
MultiParamTypeClasses
TypeFamilies
GADTs
GeneralizedNewtypeDeriving
FlexibleContexts
EmptyDataDecls
NoMonomorphismRestriction
DeriveDataTypeable
ViewPatterns
build-depends: base
, cereal
, yesod
, yesod-core
, yesod-auth
, yesod-static
, yesod-form
, bytestring
, text
, persistent
, persistent-postgresql
, persistent-template
, template-haskell
, shakespeare
, hjsmin
, monad-control
, wai-extra
, yaml
, http-conduit
, directory
, warp
, data-default
, aeson
, conduit
, monad-logger
, fast-logger
, wai-logger
, transformers
, exceptions
, resourcet
, stringsearch
, http-client
, http-types
, xml-conduit
, zip-archive
, zlib
, tar
, vector
, cassava
, double-conversion
, blaze-markup, blaze-builder
, containers
, html-conduit
, safe-exceptions
, time
-- , wl-pprint-text
, wl-pprint
, parsec
, blaze-html
, xml-hamlet
, data-default-class
, case-insensitive
, http-client
, http-client-tls
, connection
, random
, tagsoup
-- , esqueleto
-- , lifted-base
, hashable
, stm
, SafeSemaphore
-- , MonadCatchIO-transformers
, conduit-extra
, fgl
, graphviz >= 2999.18.0.2
, process
, regex-tdfa
, begriff
executable star-exec-presenter
if flag(library-only)
Buildable: False
main-is: main.hs
hs-source-dirs: app
build-depends: base
, star-exec-presenter
, yesod
ghc-options: -threaded -O2 -rtsopts -with-rtsopts=-N
test-suite test
type: exitcode-stdio-1.0
main-is: main.hs
hs-source-dirs: tests
ghc-options: -Wall
build-depends: base
, star-exec-presenter
, yesod-test >= 1.4
, yesod-core
, yesod
, persistent
, persistent-postgresql
, resourcet
, monad-logger
, transformers
, hspec
, containers
, html-conduit
, time