packages feed

katip-logzio-0.1.1.0: katip-logzio.cabal

name:                katip-logzio
version:             0.1.1.0
synopsis:            Logz.IO 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

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.LogzIO.HTTPS
  build-depends:
      base >=4.8.0.0 && <5
    , katip >= 0.8.0.0
    , stm >= 2.1.1
    , async
    , time >= 1.8.0.2
    , aeson >= 0.10.0.0
    , unix
    , unordered-containers
    , http-client >= 0.1.0
    , http-client-tls >= 0.3.4
    , uri-bytestring
    , errors >= 2.0.0
    , safe-exceptions
    , retry
    , http-types
    , text
    , bytestring
    , scientific
    , stm-chans >= 2.0.0
  hs-source-dirs:      src
  default-language:    Haskell2010
  hs-source-dirs:      src
  ghc-options: -Wall -Wall -Wnoncanonical-monad-instances
  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.LogzIO.HTTPS
  build-depends: base
               , katip
               , katip-logzio
               , tasty
               , tasty-hedgehog
               , tasty-hunit
               , hedgehog
               , vector
               , unordered-containers
               , text
               , bytestring
               , time
               , template-haskell
               , aeson
               , scientific
               , unix
               , hostname
               , scotty
               , stm
               , async
               , safe-exceptions
               , uri-bytestring
               , warp
               , http-types
  ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N  -Wnoncanonical-monad-instances
  if flag(lib-Werror)
    ghc-options: -Werror