This repository has been archived by the owner on Feb 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ngx-top.cabal
96 lines (91 loc) · 2.58 KB
/
ngx-top.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
name: ngx-top
version: 0.3.0.0
cabal-version: >=1.10
build-type: Simple
license: BSD3
license-file: LICENSE
copyright: 2017 Piotr Bogdan
maintainer: [email protected]
homepage: https://github.com/pbogdan/ngx-top#readme
synopsis: Real-time stats for nginx logs.
description:
Please see README.md
category: Web
author: Piotr Bogdan
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/pbogdan/ngx-top
library
exposed-modules:
NgxTop
NgxTop.Bots
NgxTop.Generator
NgxTop.UI
Types
other-modules:
GeoIP
build-depends:
base >=4.9 && <5,
attoparsec >=0.13.1.0 && <0.14,
brick >=0.47,
containers >=0.5.7.1,
foldl >=1.2.3,
iproute >= 1.7 && < 1.8,
lens >=4.15.1,
log-parser >=0.1.0.0 && <0.2,
pipes >=4.3.2 && <4.4,
pipes-attoparsec >=0.5.1.4 && <0.6,
pipes-bytestring >=2.1.4 && <2.2,
pipes-group >=1.0.6 && <1.1,
pipes-parse >=3.0.8 && <3.1,
protolude >=0.2,
stm >=2.4.4.1,
vty >=5.15,
tailfile-hinotify >=1.0.0.2,
unordered-containers >=0.2.7.2 && <0.3,
uri-bytestring >=0.2.2.1,
file-embed >=0.0.10,
geoip2 >= 0.2.0.0,
bytestring >=0.10.8.1 && <0.11,
safe-exceptions >= 0.1.4.0,
QuickCheck >=2.9.0,
quickcheck-instances >=0.3.12 && <0.4,
time >=1.6.0.1,
stringsearch >= 0.3.6.6 && < 0.4.0
default-language: Haskell2010
default-extensions: OverloadedStrings NoImplicitPrelude
hs-source-dirs: src
ghc-options: -Wall
executable ngx-top
main-is: Main.hs
build-depends:
base >=4.9.1.0 && <5,
ngx-top,
protolude >=0.2
default-language: Haskell2010
default-extensions: OverloadedStrings NoImplicitPrelude
hs-source-dirs: app
ghc-options: -Wall -threaded -rtsopts "-with-rtsopts=-N -M256M"
executable ngx-top-gen
main-is: Generator.hs
build-depends:
base >=4.9.1.0 && <5,
ngx-top,
protolude >=0.2
default-language: Haskell2010
default-extensions: OverloadedStrings NoImplicitPrelude
hs-source-dirs: app
ghc-options: -Wall -threaded -rtsopts "-with-rtsopts=-N -M256M"
test-suite ngx-top-test
type: exitcode-stdio-1.0
main-is: Spec.hs
build-depends:
base >=4.9.1.0 && <5,
ngx-top,
protolude >=0.2
default-language: Haskell2010
default-extensions: OverloadedStrings NoImplicitPrelude
hs-source-dirs: test
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N