packages feed

katip-datadog-0.2.0.0: katip-datadog.cabal

name:                katip-datadog
version:             0.2.0.0
synopsis:            Datadog scribe for the Katip logging framework
description:         See README.md for more details.
license:             BSD3
license-file:        LICENSE
author:              Michael Xavier
maintainer:          michael.xavier@soostone.com
copyright:           Soostone Inc, 2018
category:            Data, Text, Logging
homepage:            https://github.com/Soostone/katip
bug-reports:         https://github.com/Soostone/katip/issues
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:
  README.md
  changelog.md

--TODO: fill this in
tested-with: GHC == 8.4.3

source-repository head
  type:     git
  location: https://github.com/Soostone/katip.git

flag lib-Werror
  default: False
  manual: True


library
  exposed-modules:
    Katip.Scribes.Datadog.TCP
  build-depends:
      base >=4.4.0.0 && <5
    , aeson >= 1.0.0.0
    , bytestring
    , katip >= 0.8.0.0
    , text
    , connection
    , resource-pool
    , time
    , binary
    , network
    , safe-exceptions
    , retry >= 0.7
  hs-source-dirs:      src
  default-language:    Haskell2010
  hs-source-dirs:      src
  ghc-options: -Wall
  if flag(lib-Werror)
    ghc-options: -Werror


test-suite test
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs: test
  default-language:    Haskell2010
  other-modules:
    Katip.Tests.Scribes.Datadog.TCP
  build-depends: base
               , katip
               , katip-datadog
               , conduit
               , conduit-extra
               , tasty
               , tasty-hunit
               , aeson
               , unordered-containers
               , containers
               , safe-exceptions
               , async
               , attoparsec
               , text
  ghc-options: -Wall
  if flag(lib-Werror)
    ghc-options: -Werror