packages feed

arbor-monad-metric-0.0.4: arbor-monad-metric.cabal

name:           arbor-monad-metric
version:        0.0.4
description:    Please see the README on Github at <https://github.com/arbor/arbor-monad-metric#readme>
synopsis:       Core metric library for publishing metrics.
category:       Metrics
homepage:       https://github.com/arbor/arbor-monad-metric#readme
bug-reports:    https://github.com/arbor/arbor-monad-metric/issues
author:         Arbor Networks
maintainer:     mayhem@arbor.net
copyright:      Arbor Networks
license:        MIT
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10
extra-source-files:
    ChangeLog.md
    README.md

source-repository head
  type: git
  location: https://github.com/arbor/arbor-monad-metric

library
  exposed-modules:
      Arbor.Monad.Metric
      Arbor.Monad.Metric.Generic
      Arbor.Monad.Metric.Type
  other-modules:
      Paths_arbor_monad_metric
  hs-source-dirs:
      src
  default-extensions: BangPatterns FlexibleContexts FlexibleInstances GeneralizedNewtypeDeriving MultiParamTypeClasses OverloadedStrings TupleSections
  ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
  build-depends:
      base              >= 4.7        && < 5
    , containers        >= 0.5.10     && < 0.6
    , generic-lens      >= 1.0.0.2    && < 1.2
    , lens              >= 4.16       && < 4.18
    , mtl               >= 2.2.2      && < 2.3
    , resourcet         >= 1.2.1      && < 1.3
    , stm               >= 2.4.0      && < 2.6
    , transformers      >= 0.5.2      && < 0.6
  default-language: Haskell2010

test-suite arbor-monad-metric-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Arbor.Monad.MetricSpec
      Arbor.Monad.UdpServer
      Arbor.Monad.Metric
      Arbor.Monad.Metric.Generic
      Arbor.Monad.Metric.Type
      Paths_arbor_monad_metric
  hs-source-dirs:
      test
      src
  default-extensions: BangPatterns FlexibleContexts FlexibleInstances GeneralizedNewtypeDeriving MultiParamTypeClasses OverloadedStrings TupleSections
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      arbor-datadog
    , arbor-monad-metric
    , base >=4.7 && <5
    , bytestring
    , containers
    , generic-lens
    , hedgehog
    , hspec
    , hw-hspec-hedgehog
    , lens
    , mtl
    , network
    , resourcet
    , stm
    , transformers
  default-language: Haskell2010