-
Notifications
You must be signed in to change notification settings - Fork 1
/
service-benchmark-tool.cabal
175 lines (150 loc) · 4.24 KB
/
service-benchmark-tool.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
Name: service-benchmark-tool
Version: 0.1
Synopsis: Tools for benchmarking services over a network connection
Description: Tools for benchmarking services over a network connectyion
Homepage: https://github.com/alephcloud/hs-service-benchmark-tool
License: Apache-2.0
Author: Lars Kuhtz <lkuhtz@pivotmail.com>
Maintainer: Lars Kuhtz <lkuhtz@pivotmail.com>
Copyright: Copyright (c) 2013-2014 PivotCloud, Inc.
Category: tools
Build-type: Custom
Cabal-version: >= 1.18
License-file: LICENSE
extra-doc-files:
README.md,
CHANGELOG.md
extra-source-files:
constraints
source-repository head
type: git
location: https://github.com/alephcloud/hs-service-benchmark-tool
source-repository this
type: git
location: https://github.com/alephcloud/hs-service-benchmark-tool
tag: 0.1
Flag with-chart
Description: Build applications with support for printing charts.
Default: False
Manual: True
Flag with-http-streams
Description: Include support for http-streams
Default: True
Manual: True
Library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules:
Network.Benchmark
Network.Benchmark.Utils
build-depends:
async >= 2.0,
aeson >= 0.7,
ansi-terminal >= 0.6,
base == 4.*,
base-unicode-symbols >= 0.2,
bytestring >= 0.10,
case-insensitive >= 1.2,
configuration-tools >= 0.2.8,
containers >= 0.5,
data-default >= 0.5,
deepseq >= 1.3,
dlist >= 0.7,
either >= 4.3,
enclosed-exceptions >= 1.0,
errors >= 1.4.7,
hoist-error >= 0.1,
http-client >= 0.4,
lens >= 4.6,
lifted-async >= 0.2,
lifted-base >= 0.2.3,
monad-control >= 1.0,
mtl >= 2.2,
optparse-applicative >= 0.11,
statistics >= 0.12,
stm >= 2.4,
text >= 1.2,
thyme >= 0.3,
trace >= 0.1,
transformers >= 0.3,
vector >= 0.10,
vector-space >= 0.8,
yet-another-logger >= 0.0
if flag(with-chart)
build-depends:
Chart >= 1.3.2,
Chart-cairo >= 1.2,
colour >= 2.3
cpp-options: -DWITH_CHART
ghc-options: -Wall -O2
Executable service-benchmark-tool
default-language: Haskell2010
hs-source-dirs: main
Main-is: Main.hs
build-depends:
ansi-terminal >= 0.6,
base == 4.*,
base-unicode-symbols >= 0.2,
bytestring >= 0.10,
case-insensitive >= 1.2,
configuration-tools >= 0.2.8,
http-client >= 0.4,
http-types >= 0.8,
lens >= 4.6,
lifted-base >= 0.2.3,
monad-control >= 1.0,
mtl >= 2.2,
optparse-applicative >= 0.11,
service-benchmark-tool,
text >= 1.2,
transformers >= 0.3,
yet-another-logger >= 0.0
if flag(with-http-streams)
cpp-options: -DWITH_HTTP_STREAMS
build-depends:
io-streams >= 1.2,
http-streams >= 0.7
ghc-options: -Wall -threaded -with-rtsopts=-N -O2
Executable echo-service
default-language: Haskell2010
hs-source-dirs: test
Main-is: EchoServer.hs
build-depends:
service-benchmark-tool,
aeson >= 0.8,
base == 4.*,
base-unicode-symbols >= 0.2,
bytestring >= 0.10,
case-insensitive >= 1.2,
data-default >= 0.5,
lens >= 4.6,
scotty >= 0.9.1,
text >= 1.2,
transformers >= 0.4,
wai >= 3.0,
warp >= 3.0
ghc-options: -Wall -threaded -O2 -with-rtsopts=-N
Executable example-server
default-language: Haskell2010
hs-source-dirs: main
Main-is: Main.hs
build-depends:
service-benchmark-tool,
aeson >= 0.8,
base == 4.*,
base-unicode-symbols >= 0.2,
bytestring >= 0.10,
case-insensitive >= 1.2,
configuration-tools >= 0.2.8,
http-client >= 0.4,
http-types >= 0.8,
lens >= 4.6,
lifted-base >= 0.2.3,
monad-control >= 1.0,
mtl >= 2.2,
optparse-applicative >= 0.11,
scotty >= 0.9.1,
text >= 1.2,
transformers >= 0.4,
yet-another-logger >= 0.0
ghc-options: -Wall -threaded -O2 -with-rtsopts=-N