packages feed

statsdi-0.1.0.0: statsdi.cabal

name:                statsdi
version:             0.1.0.0
synopsis:            A lovely [Dog]StatsD implementation
description:         An implementation of DogStatsD for collecting and pushing metrics
homepage:            https://github.com/iostat/statsdi#readme
license:             MIT
license-file:        LICENSE
author:              Ilya Ostrovskiy
maintainer:          first-name@thenumber200-thewordproof.cc
copyright:           2017 Ilya Ostrovskiy
category:            Metrics
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Control.Monad.Stats
                     , Control.Monad.Stats.Ethereal
                     , Control.Monad.Stats.TH
                     , Control.Monad.Stats.Types
                     , Control.Monad.Stats.Util
  other-modules:       Control.Monad.Stats.Monad
                     , Control.Monad.Stats.MTL
  build-depends:       base >= 4.7 && < 5
                     , network
                     , random
                     , dequeue
                     , stm
                     , time
                     , bytestring
                     , ether
                     , transformers
                     , transformers-lift
                     , template-haskell >= 2.11.1.0 && < 2.12
                     , unordered-containers >= 0.2.7.0 && < 0.3
                     , hashable >= 1.2.4.0 && < 1.3
  default-language:    Haskell2010

test-suite statsdi-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  other-modules:       Harness
  build-depends:       base
                     , statsdi
                     , bytestring
                     , stm
                     , network
                     , time
                     , tasty
                     , tasty-hspec
                     , hspec
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/iostat/statsdi