forked from christian-marie/servant-ekg
-
Notifications
You must be signed in to change notification settings - Fork 21
/
servant-ekg.cabal
81 lines (74 loc) · 2.13 KB
/
servant-ekg.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
cabal-version: >=1.10
name: servant-ekg
version: 0.3.2
synopsis: Helpers for using ekg with servant
description: Helpers for using ekg with servant, e.g.. counters per endpoint.
license: BSD3
license-file: LICENSE
author:
Anchor Engineering <[email protected]>, Servant Contributors
maintainer:
Servant Contributors <[email protected]>
category: Servant, Web, System
build-type: Simple
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7
extra-source-files: README.md CHANGELOG.md
source-repository HEAD
type: git
location: https://github.com/haskell-servant/servant-ekg.git
library
exposed-modules: Servant.Ekg
other-modules: Servant.Ekg.Internal
hs-source-dirs: lib
build-depends:
base >=4.9 && <4.16
, ekg-core >=0.1.1.4 && <0.2
, http-types >=0.12.2 && <0.13
, hashable >=1.2.7.0 && <1.4
, servant >=0.14 && <0.20
, text >=1.2.3.0 && <1.3
, time >=1.6.0.1 && <1.12
, unordered-containers >=0.2.9.0 && <0.3
, wai >=3.2.0 && <3.3
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
ghc-options: -Wall
default-language: Haskell2010
hs-source-dirs: test
main-is: Spec.hs
other-modules: Servant.EkgSpec
build-tool-depends: hspec-discover:hspec-discover
build-depends:
aeson
, base
, ekg
, ekg-core
, hspec >=2 && <3
, http-client
, servant
, servant-client
, servant-ekg
, servant-server
, text
, transformers
, unordered-containers
, wai
, warp >=3.2.4 && <3.3
benchmark bench
type: exitcode-stdio-1.0
hs-source-dirs: bench
main-is: Main.hs
ghc-options: -Wall -threaded
default-language: Haskell2010
build-depends:
aeson
, base >=4 && <5
, ekg
, ekg-core
, process
, servant-ekg
, servant-server
, text
, wai
, warp >=3.2.4 && <3.3