-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpronk.cabal
87 lines (77 loc) · 2 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
name: pronk
version: 0.1.0.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, and
programmable.
.
The name "pronk" comes from the Afrikaans verb /pronk-/, meaning
"to show off" or "to strut".
homepage: https://github.com/mailrank/pronk
license: BSD3
license-file: LICENSE
author: Bryan O'Sullivan <[email protected]>
maintainer: Bryan O'Sullivan <[email protected]>
copyright: 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
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.Report
Network.HTTP.LoadTest.Types
ghc-options: -Wall
if flag(developer)
ghc-prof-options: -auto-all
build-depends:
aeson,
base < 5,
bytestring,
case-insensitive,
criterion >= 0.5.1.0,
hashable >= 1.1.2.0,
http-enumerator,
http-types,
statistics,
text,
text-format,
time,
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,
criterion,
http-enumerator,
pronk,
network,
text,
text-format
source-repository head
type: git
location: git://github.com/mailrank/pronk
source-repository head
type: mercurial
location: https://bitbucket.org/bos/pronk