-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunction-graph.cabal
216 lines (206 loc) · 5.81 KB
/
function-graph.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
cabal-version: 3.0
name: function-graph
version: 0.1.0.0
license: BSD-3-Clause
license-file: LICENSE
author: Rune K. Svendsen
maintainer: [email protected]
build-type: Simple
extra-doc-files: CHANGELOG.md
tested-with: GHC == 8.10.7, GHC == 9.0.2
-- TODO: add -Wunused-packages
common warnings
ghc-options: -Wall
library
import: warnings
exposed-modules: FunGraph
FunGraph.Types
FunGraph.Build
FunGraph.Examples
FunGraph.Util
Streaming.Prelude.Extras
build-depends: base
, hashable
, bellman-ford
, dump-decls-lib
, aeson
, bytestring
, text
, containers
, utf8-string
, deepseq
, mtl
, time
, streaming
, transformers
-- FunGraph.Util
, lucid
hs-source-dirs: src/lib
default-language: Haskell2010
library function-graph-server
import: warnings
exposed-modules: Server
Server.Api
Server.Monad
Server.Pages.Root
Server.Pages.Search
Server.Pages.Typeahead
Server.GraphViz
Server.HtmlStream
Data.BalancedStream
Data.PrioTrie
build-depends: base
, bellman-ford
, function-graph
, text
, bytestring
, lucid
, lucid-htmx
, servant-lucid
, servant
, servant-server
, warp
, mtl
, transformers
, containers
, unordered-containers
-- BEGIN: Server.GraphViz
, process
-- END: Server.GraphViz
, servant-errors
, wai-extra
, deepseq
, streaming
, time
, file-embed
hs-source-dirs: src/server
default-language: Haskell2010
library test
import: warnings
exposed-modules: FunGraph.Test
FunGraph.Test.Util
FunGraph.Test.ExtraArgs
build-depends: base
, function-graph
, bytestring
, text
, containers
, deepseq
, streaming
-- FunGraph.Util
, lucid
, hspec-expectations-pretty-diff
, function-graph-server
, servant
, servant-client
, servant-lucid
, text
, bytestring
, lucid
, warp
, http-client
, streaming-commons
, wai
, async
, streaming
, transformers
, time
hs-source-dirs: src/test
default-language: Haskell2010
executable server
import: warnings
main-is: Main.hs
hs-source-dirs: app/server
build-depends: base, function-graph-server, lucid, file-embed, text
default-language: Haskell2010
ghc-options: -threaded
-O2
-- -rtsopts "-with-rtsopts=-N -p -s -hT -i0.1"
executable function-graph
import: warnings
main-is: Main.hs
hs-source-dirs: app
build-depends: base, function-graph, bellman-ford, containers, ansi-terminal, text
default-language: Haskell2010
benchmark benchmark-lib
import: warnings
type: exitcode-stdio-1.0
main-is: BenchmarkLib.hs
hs-source-dirs: benchmark/lib
build-depends:
base
, function-graph
, function-graph:test
, function-graph:function-graph-server
, criterion
default-language: Haskell2010
ghc-options: -threaded
-O2
benchmark benchmark-web
import: warnings
type: exitcode-stdio-1.0
main-is: BenchmarkWeb.hs
hs-source-dirs: benchmark/web
build-depends:
base
, function-graph:test
, function-graph-server
, criterion
, text
, bytestring
, lucid
, streaming
default-language: Haskell2010
ghc-options: -threaded
-O2
test-suite test-unit
import: warnings
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test/unit
ghc-options: -threaded -rtsopts -with-rtsopts=-N -fno-ignore-asserts
build-depends:
base
, function-graph
, function-graph:test
, bellman-ford
, bytestring
, text
, containers
, hspec
, hspec-expectations
, hspec-expectations-pretty-diff
default-language: Haskell2010
-- WIP: doesn't work with nix-build
executable test-web
import: warnings
main-is: Spec.hs
hs-source-dirs: test/web
ghc-options: -threaded -rtsopts -with-rtsopts=-N -fno-ignore-asserts
build-depends:
base
, function-graph
, function-graph:test
, dump-decls-lib
, bytestring
, text
, containers
, hspec
, hspec-expectations-pretty-diff
, function-graph-server
, servant
, servant-client
, servant-lucid
, text
, bytestring
, lucid
, warp
, http-client
, streaming-commons
, wai
, async
, streaming
, html-parse
, ansi-terminal
, temporary
default-language: Haskell2010