-
Notifications
You must be signed in to change notification settings - Fork 0
/
arbor-monad-metric-datadog.cabal
106 lines (98 loc) · 5.43 KB
/
arbor-monad-metric-datadog.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
cabal-version: 2.2
name: arbor-monad-metric-datadog
version: 1.1.2
description: Please see the README on Github at <https://github.com/arbor/arbor-monad-metric-datadog#readme>
synopsis: Metric library backend for datadog.
category: Metrics
homepage: https://github.com/arbor/arbor-monad-metric-datadog#readme
bug-reports: https://github.com/arbor/arbor-monad-metric-datadog/issues
author: Arbor Networks
maintainer: mayhem@arbor.net
copyright: Arbor Networks
license: MIT
license-file: LICENSE
tested-with: GHC == 8.8.1, GHC == 8.6.5, GHC == 8.4.4, GHC == 8.2.2
build-type: Simple
extra-source-files: ChangeLog.md
README.md
source-repository head
type: git
location: https://github.com/arbor/arbor-monad-metric-datadog
common base { build-depends: base >= 4 && < 5 }
common arbor-datadog { build-depends: arbor-datadog >= 0.1 && < 0.2 }
common arbor-monad-metric { build-depends: arbor-monad-metric >= 1.1.0 && < 1.3 }
common bytestring { build-depends: bytestring >= 0.10.8 && < 0.11 }
common containers { build-depends: containers >= 0.5.10 && < 0.7 }
common exceptions { build-depends: exceptions >= 0.9 && < 0.11 }
common fast-logger { build-depends: fast-logger >= 2 && < 4 }
common generic-lens { build-depends: generic-lens >= 1.2.0.1 && < 1.3 }
common hedgehog { build-depends: hedgehog >= 0.6.1 && < 1.1 }
common hspec { build-depends: hspec >= 2.6.0 && < 2.8 }
common hw-hspec-hedgehog { build-depends: hw-hspec-hedgehog >= 0.1.0.4 && < 0.2 }
common lens { build-depends: lens >= 4.16 && < 5 }
common monad-logger { build-depends: monad-logger >= 0.3 && < 0.4 }
common mtl { build-depends: mtl >= 2.2.2 && < 2.3 }
common network { build-depends: network >= 2.6.0 && < 3 }
common resourcet { build-depends: resourcet >= 1.2.1 && < 1.3 }
common stm { build-depends: stm >= 2.5.0 && < 2.6 }
common text { build-depends: text >= 1.2.3 && < 1.3 }
common transformers { build-depends: transformers >= 0.5.2 && < 0.6 }
common config
default-language: Haskell2010
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
common arbor-monad-metric-datadog
build-depends: arbor-monad-metric-datadog
library
import: base, config
, arbor-datadog
, arbor-monad-metric
, bytestring
, containers
, generic-lens
, lens
, mtl
, network
, resourcet
, stm
, text
, transformers
exposed-modules: Arbor.Monad.Metric.Datadog
Arbor.Monad.Metric.Datadog.Options
Arbor.Monad.Metric.Datadog.Internal
Arbor.Monad.Metric.Datadog.Internal.Show
hs-source-dirs: src
default-extensions: BangPatterns FlexibleContexts FlexibleInstances GeneralizedNewtypeDeriving MultiParamTypeClasses OverloadedStrings TupleSections
test-suite arbor-monad-metric-datadog-test
import: base, config
, arbor-datadog
, arbor-monad-metric
, arbor-monad-metric-datadog
, bytestring
, containers
, exceptions
, fast-logger
, generic-lens
, hedgehog
, hspec
, hw-hspec-hedgehog
, lens
, monad-logger
, mtl
, network
, resourcet
, stm
, text
, transformers
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules: Arbor.Monad.Datadog.MetricApp
Arbor.Monad.Datadog.MetricSpec
Arbor.Monad.Datadog.UdpServer
Arbor.Monad.Metric.Datadog
Arbor.Monad.Metric.Datadog.Internal
Arbor.Monad.Metric.Datadog.Internal.Show
hs-source-dirs: test
src
default-extensions: BangPatterns FlexibleContexts FlexibleInstances GeneralizedNewtypeDeriving MultiParamTypeClasses OverloadedStrings TupleSections
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-tool-depends: hspec-discover:hspec-discover