-
Notifications
You must be signed in to change notification settings - Fork 1
/
pronk.cabal
108 lines (97 loc) · 2.44 KB
/
pronk.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
name: pronk
version: 0.1.0
synopsis: A library and command line app for HTTP load testing
description:
A library and command line tool for HTTP load testing. You can
think of this package as similar to `httperf` or `ab`, only more
modern, faster, more scalable, easier to deal with, programmable,
and with customisable output.
.
The name "pronk" comes from the Afrikaans verb /pronk-/, meaning
"to show off" or "to strut".
homepage: https://github.com/bos/pronk
license: BSD3
license-file: LICENSE
author: Bryan O'Sullivan <[email protected]>
maintainer: Bryan O'Sullivan <[email protected]>
copyright: (c) 2011 Bryan O'Sullivan
(c) 2011 MailRank, Inc.
category: Network
build-type: Simple
cabal-version: >=1.8
extra-source-files:
README.markdown
servers/ping/ping-servers.cabal
servers/ping/src/*.hs
data-files:
templates/*.tpl
flag developer
description: operate in developer mode
default: False
library
hs-source-dirs: lib
exposed-modules:
Network.HTTP.LoadTest
Network.HTTP.LoadTest.Analysis
Network.HTTP.LoadTest.Environment
Network.HTTP.LoadTest.Report
Network.HTTP.LoadTest.Types
other-modules:
Paths_pronk
ghc-options: -Wall
if flag(developer)
ghc-prof-options: -auto-all
build-depends:
aeson,
base < 5,
bytestring >= 0.9.2.0,
case-insensitive,
conduit,
criterion >= 0.6.0.0,
deepseq,
filepath,
ghc-prim >= 0.2.0.0,
hashable >= 1.2.0.2,
hastache >= 0.5.0,
http-conduit >= 1.7,
http-types,
lifted-base,
meldable-heap,
resourcet,
statistics >= 0.10.0.0,
text,
text-format >= 0.3.0.4,
time,
transformers >= 0.2.2,
unix-compat >= 0.3.0.2,
unordered-containers >= 0.1.4.0,
vector,
vector-algorithms
executable pronk
hs-source-dirs: app
main-is: App.hs
c-sources: app/cbits/rtsopts.c
ghc-options: -threaded -rtsopts -Wall
if flag(developer)
ghc-prof-options: -auto-all
build-depends:
aeson,
base < 5,
bytestring,
cmdargs >= 0.7,
conduit,
criterion,
deepseq,
http-conduit,
network,
pronk,
resourcet,
text,
text-format,
time
source-repository head
type: git
location: git://github.com/bos/pronk
source-repository head
type: mercurial
location: https://bitbucket.org/bos/pronk