servant-ekg/ekg-servant.cabal

44 lines
1.3 KiB
Text
Raw Normal View History

2015-05-01 08:11:37 +02:00
name: servant-ekg
2015-05-01 04:40:08 +02:00
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 <engineering@lists.anchor.net.au>
maintainer: Anchor Engineering <engineering@lists.anchor.net.au>
category: System
build-type: Simple
cabal-version: >=1.10
source-repository HEAD
type: git
2015-05-01 08:11:37 +02:00
location: https://github.com/anchor/servant-ekg.git
2015-05-01 04:40:08 +02:00
library
exposed-modules: Servant.Ekg
2015-05-01 07:30:34 +02:00
hs-source-dirs: lib
2015-05-01 04:40:08 +02:00
build-depends: base >=4.7 && <4.9
, ekg-core
2015-05-01 07:28:43 +02:00
, servant >=0.2 && <0.3
2015-05-01 04:40:08 +02:00
, http-types
2015-05-01 07:28:43 +02:00
, text
2015-05-01 04:40:08 +02:00
, time
2015-05-01 07:28:43 +02:00
, unordered-containers
2015-05-01 04:40:08 +02:00
, wai
2015-05-01 07:30:34 +02:00
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
2015-05-01 08:11:37 +02:00
, servant-ekg
, servant-server
, text
, wai
, warp