forked from iand675/hs-opentelemetry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhs-opentelemetry-propagator-datadog.cabal
90 lines (85 loc) · 2.56 KB
/
hs-opentelemetry-propagator-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
cabal-version: 2.4
name: hs-opentelemetry-propagator-datadog
version: 0.0.0.0
author: Kazuki Okamoto (岡本和樹)
maintainer: [email protected]
common common
build-depends: base >= 4 && < 5
ghc-options: -Wall
if impl(ghc >= 8.0)
ghc-options: -Wcompat
default-language: Haskell2010
library
import: common
hs-source-dirs: src
exposed-modules: OpenTelemetry.Propagator.Datadog
OpenTelemetry.Propagator.Datadog.Internal
build-depends: bytestring,
hs-opentelemetry-api,
http-types,
primitive,
text
ghc-options: -Wcompat
-Wno-name-shadowing
if impl(ghc >= 6.4)
ghc-options: -Wincomplete-record-updates
if impl(ghc >= 6.8)
ghc-options: -Wmonomorphism-restriction
if impl(ghc >= 7.0)
ghc-options: -Wmissing-import-lists
if impl(ghc >= 7.2)
ghc-options: -Wincomplete-uni-patterns
-Widentities
if impl(ghc >= 8.0)
ghc-options: -Wmissing-exported-signatures
-Wredundant-constraints
if impl(ghc >= 8.2)
ghc-options: -Wmissing-home-modules
if impl(ghc >= 8.4)
ghc-options: -Wmissing-export-lists
-Wpartial-fields
if impl(ghc >= 8.8)
ghc-options: -Wmissing-deriving-strategies
if impl(ghc >= 8.10)
ghc-options: -Wunused-packages
if impl(ghc >= 9.0)
ghc-options: -Winvalid-haddock
if impl(ghc >= 9.2)
ghc-options: -Wmissing-kind-signatures
-Woperator-whitespace
-Wredundant-bang-patterns
test-suite spec
import: common
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test/spec
old-src
other-modules: OpenTelemetry.Propagator.DatadogSpec
OpenTelemetry.Propagator.Datadog.InternalSpec
Raw
String
build-depends: hs-opentelemetry-propagator-datadog,
hs-opentelemetry-api,
bytestring,
hspec,
pretty-hex,
primitive,
QuickCheck
ghc-options: -threaded
-rtsopts
-with-rtsopts=-N
build-tool-depends: hspec-discover:hspec-discover
benchmark header-codec
import: common
type: exitcode-stdio-1.0
main-is: main.hs
other-modules: Raw
String
hs-source-dirs: benchmark/header-codec
old-src
build-depends: hs-opentelemetry-propagator-datadog,
hs-opentelemetry-api,
bytestring,
criterion,
deepseq,
primitive