-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathservant-ekg.cabal
44 lines (41 loc) · 1.31 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
name: servant-ekg
version: 0.1.0.0
synopsis: Helpers for using ekg with servant
description: Helpers for using ekg with servant
license: BSD3
license-file: LICENSE
author: Anchor Engineering <[email protected]>
maintainer: Anchor Engineering <[email protected]>
category: System
build-type: Simple
cabal-version: >=1.10
source-repository HEAD
type: git
location: https://github.com/anchor/servant-ekg.git
library
exposed-modules: Servant.Ekg
hs-source-dirs: lib
build-depends: base >=4.7 && <4.9
, ekg-core
, servant >=0.2 && <0.3
, http-types
, text
, time
, unordered-containers
, wai
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
ghc-options: -Wall
default-language: Haskell2010
hs-source-dirs: test
main-is: test.hs
build-depends: base == 4.*
, aeson
, ekg
, ekg-core
, servant-ekg
, servant-server
, text
, wai
, warp