packages feed

monad-metrics-0.2.1.0: monad-metrics.cabal

name: monad-metrics
version: 0.2.1.0
cabal-version: >=1.10
build-type: Simple
license: MIT
license-file: LICENSE
copyright: 2017 Seller Labs, 2016 Taylor Fausak
maintainer: matt@sellerlabs.com
homepage: https://github.com/sellerlabs/monad-metrics#readme
synopsis: A convenient wrapper around EKG metrics
description:
    A convenient wrapper for collecting application metrics. Please see the README.md for more information.
category: Web
author: Matthew Parsons
extra-source-files:
    README.md
    CHANGELOG.md

source-repository head
    type: git
    location: https://github.com/sellerlabs/monad-metrics

library
    exposed-modules:
        Control.Monad.Metrics
        Control.Monad.Metrics.Internal
    build-depends:
        base >=4.8 && <5,
        clock >=0.3 && <0.8,
        ekg-core >=0.1.0.1 && <0.2,
        exceptions >=0.6 && <0.9,
        hashable ==1.2.*,
        microlens >=0.2 && <0.5,
        mtl >=2 && <2.3,
        text <1.3,
        transformers >=0.3 && <0.6,
        unordered-containers ==0.2.*
    default-language: Haskell2010
    hs-source-dirs: src
    ghc-options: -Wall

test-suite  monad-metrics-test
    type: exitcode-stdio-1.0
    main-is: Spec.hs
    build-depends:
        base >=4.8 && <=5.0,
        monad-metrics -any
    default-language: Haskell2010
    hs-source-dirs: test
    ghc-options: -threaded -rtsopts -with-rtsopts=-N