packages feed

riemann-0.1.0.0: riemann.cabal

name:                riemann
version:             0.1.0.0
synopsis:            A Riemann client for Haskell
description:         Very simple event sending to a Riemann server.
homepage:            https://github.com/telser/riemann-hs
license:             MIT
license-file:        LICENSE
author:              Joseph Abrahamson, Trevis Elser
maintainer:          trevis@clickscape.com
copyright:           2013 Joseph Abrahamson, 2015 Trevis Elser
category:            Network
build-type:          Simple
cabal-version:       >=1.10


source-repository head
  type:     git
  location: https://github.com/telser/riemann-hs/

library
  hs-source-dirs:     src
  exposed-modules:
    Network.Monitoring.Riemann
    Network.Monitoring.Riemann.Types
  other-modules:
  build-depends:
                base              >= 4.8.0     && < 5.0,
                network           >= 2.4.0.0,
                text              >= 0.11.2.3,
                containers        >= 0.4.2.0,
                protobuf          >= 0.2,
                either,
                lens,
                time,
                errors,
                data-default,
                transformers,
                cereal
  default-language:   Haskell2010

test-suite doctest
  type:            exitcode-stdio-1.0
  ghc-options:     -threaded
  hs-source-dirs:  test
  main-is:         Doctest.hs
  build-depends:
                base,
                directory,
                either,
                doctest,
                filepath
  default-language:   Haskell2010

test-suite property
  type:            exitcode-stdio-1.0
  ghc-options:     -threaded
  hs-source-dirs:  test
  main-is:         Property.hs
  build-depends:
                base,
                either,
                QuickCheck >= 2.5.1.0,
                test-framework,
                test-framework-quickcheck2,
                riemann
  default-language:   Haskell2010

test-suite unit
  type:            exitcode-stdio-1.0
  ghc-options:     -threaded
  hs-source-dirs:  test
  main-is:         Unit.hs
  build-depends:
    base,
    HUnit,
    test-framework,
    test-framework-hunit,
    riemann
  default-language:   Haskell2010