-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathekg-core.cabal
91 lines (79 loc) · 2.02 KB
/
ekg-core.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
cabal-version: 1.18
name: ekg-core
version: 0.1.1.8
synopsis: Tracking of system metrics
description: This library lets you defined and track system metrics.
homepage: https://github.com/tibbe/ekg-core
bug-reports: https://github.com/tibbe/ekg-core/issues
license: BSD3
license-file: LICENSE
author: Johan Tibell
maintainer:
Johan Tibell <[email protected]>,
Mikhail Glushenkov <[email protected]>
category: System
build-type: Simple
extra-source-files: CHANGES.md
tested-with:
GHC ==8.0.2
|| ==8.2.2
|| ==8.4.4
|| ==8.6.5
|| ==8.8.3
|| ==8.10.7
|| ==9.0.2
|| ==9.2.8
|| ==9.4.8
|| ==9.6.4
|| ==9.6.6
|| ==9.8.4
|| ==9.10.1
|| ==9.12.1
library
exposed-modules:
System.Metrics
System.Metrics.Counter
System.Metrics.Distribution
System.Metrics.Distribution.Internal
System.Metrics.Gauge
System.Metrics.Label
other-modules:
Data.Array
Data.Atomic
System.Metrics.ThreadId
build-depends:
base >=4.6 && <4.22
, containers >=0.5 && <0.9
, text <2.2
, unordered-containers <0.3
default-language: Haskell2010
ghc-options: -Wall
if arch(i386)
cc-options: -march=i686
includes: distrib.h
install-includes: distrib.h
include-dirs: cbits
c-sources:
cbits/atomic.c
cbits/distrib.c
benchmark counter
main-is: Counter.hs
type: exitcode-stdio-1.0
build-depends:
base
, ekg-core
default-language: Haskell2010
hs-source-dirs: benchmarks
ghc-options: -O2 -threaded -Wall
benchmark distribution
main-is: Distribution.hs
type: exitcode-stdio-1.0
build-depends:
base
, ekg-core
default-language: Haskell2010
hs-source-dirs: benchmarks
ghc-options: -O2 -threaded -Wall
source-repository head
type: git
location: https://github.com/tibbe/ekg-core.git