-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhs-opentelemetry-instrumentation-servant.cabal
59 lines (55 loc) · 1.84 KB
/
hs-opentelemetry-instrumentation-servant.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
cabal-version: 3.4
name: hs-opentelemetry-instrumentation-servant
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD-3-Clause
license-file: LICENSE
author: Sander
maintainer: [email protected]
-- copyright:
category: Web
build-type: Simple
extra-doc-files: CHANGELOG.md
-- extra-source-files:
common warnings
ghc-options: -Wall
library
import: warnings
exposed-modules: OpenTelemetry.Instrumentation.Servant
, OpenTelemetry.Instrumentation.Servant.Internal
-- other-extensions:
build-depends: base < 5
, hs-opentelemetry-api ==0.1.*
, hs-opentelemetry-instrumentation-wai
, http-types
, servant
, text
, unordered-containers
, wai
hs-source-dirs: src
default-language: Haskell2010
test-suite hs-opentelemetry-instrumentation-servant-test
import: warnings
default-language: Haskell2010
-- other-modules:
-- other-extensions:
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends:
base ^>=4.18.2.1,
hs-opentelemetry-instrumentation-servant
executable server
ghc-options: -O2 -Wall -threaded -fprof-auto -rtsopts "-with-rtsopts=-N"
main-is: Main.hs
hs-source-dirs: exe
default-language: Haskell2010
build-depends: base
, hs-opentelemetry-instrumentation-servant
, hs-opentelemetry-instrumentation-wai
, hs-opentelemetry-sdk
, servant-server
, text
, unliftio
, warp