-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththebook.cabal
224 lines (213 loc) · 6.91 KB
/
thebook.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
name: thebook
version: 0.1.0
synopsis: Exchange simulator in Haskell.
description: This package implements an LSE Millenium clone in Haskell.
category: Finance
homepage: https://github.com/jkozlowski/thebook-haskell
bug-reports: https://github.com/jkozlowski/thebook-haskell/issues
license-file: LICENSE
license: MIT
author: Jakub Kozlowski
copyright: 2014 Jakub Kozlowski <[email protected]>
maintainer: [email protected]
build-type: Custom
cabal-version: >= 1.9.2
extra-source-files: LICENCE
README.md
source-repository head
location:
git://github.com/jkozlowski/thebook-haskell.git
type:
git
flag documentation
default:
False
library
exposed-modules: Data.ITCH.Types
, Data.ITCH.ITCH51
, Data.TheBook.Types
, Data.TheBook.Book
, Data.TheBook.Rule
, Data.TheBook.Monad
default-language: Haskell2010
build-depends: base >= 4 && < 5
, mtl
, bytestring >= 0.10
, text
, time
, containers
, binary >= 0.6.3
, lens
, QuickCheck == 2.6.*
, Decimal
, old-locale
, fixhs >= 0.1.4
, data-ordlist >= 0.4.6
, monad-logger >= 0.3.6
-- Codegen deps
, directory
, base >= 4 && < 5
, xml-conduit
, filepath
, text
, bytestring
, haskell-src-exts
, containers
, filepath
, system-filepath
hs-source-dirs: src
, generated
ghc-options: -Wall
-fwarn-incomplete-patterns
executable thebook
main-is: Main.hs
build-depends: base >= 4 && < 5
, mtl
, stm
, lens
, random
, bytestring
, text
, time
, containers
, hslogger
, Decimal
, monad-logger >= 0.3.6
, data-ordlist >= 0.4.6
, thebook
, QuickCheck == 2.6.*
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
-O2
-fwarn-incomplete-patterns
-rtsopts
-threaded
executable thebook-demo-client
main-is: Client.hs
build-depends: base >= 4 && < 5
, mtl
, transformers
, stm
, binary
, random
, network
, bytestring
, text
, time
, lens
, monad-logger >= 0.3.6
, containers
, hslogger
, hslogger-template
, conduit
, conduit-extra >= 1.1.0
, resourcet
, thebook
, QuickCheck == 2.6.*
hs-source-dirs: demo
ghc-options: -Wall -O2 -fwarn-incomplete-patterns -rtsopts -threaded
executable thebook-demo-server
main-is: Server.hs
build-depends: base >= 4 && < 5
, mtl
, transformers
, stm
, random
, binary
, bytestring
, text
, network
, time
, lens
, monad-logger >= 0.3.6
, containers
, hslogger
, hslogger-template
, conduit
, conduit-extra >= 1.1.0
, thebook
, QuickCheck == 2.6.*
hs-source-dirs: demo
ghc-options: -Wall
-O2
-fwarn-incomplete-patterns
-rtsopts
-threaded
test-suite thebook-hpc
main-is: Test.hs
type: exitcode-stdio-1.0
build-depends: base
, bytestring
, containers
, text
, time
, binary
, mtl
, lens
, tasty == 0.8
, monad-logger >= 0.3.6
, tasty-quickcheck == 0.8
, QuickCheck == 2.6.*
, Cabal >= 1.9.2
, Decimal
, old-locale
, fixhs >= 0.1.4
Ghc-Options: -Wall
-O0
-fhpc
-hpcdir
dist/hpc/mix/thebook-tests
hs-source-dirs: src
, generated
, tests
test-suite thebook-tests
main-is: Test.hs
type: exitcode-stdio-1.0
build-depends: base
, bytestring
, containers
, text
, time
, binary
, mtl
, lens
, tasty == 0.8
, monad-logger >= 0.3.6
, tasty-quickcheck == 0.8
, QuickCheck == 2.6.*
, Cabal >= 1.9.2
, Decimal
, old-locale
, fixhs >= 0.1.4
, fsnotify >= 0.0.11
, system-filepath >= 0.4.7
Ghc-Options: -Wall
-O0
hs-source-dirs: src
, generated
, tests
benchmark thebook-bench
type: exitcode-stdio-1.0
hs-source-dirs: src
, generated
, bench
main-is: Benchmark.hs
build-depends: base
, mtl
, criterion
, random
-- Codegen deps
, directory
, base >= 4 && < 5
, xml-conduit
, filepath
, text
, monad-logger >= 0.3.6
, bytestring
, haskell-src-exts
, containers
, filepath
, system-filepath
ghc-options: -Wall
-O2