packages feed

plow-log-async-0.1.4.0: plow-log-async.cabal

cabal-version:       >=1.10
name:                plow-log-async
version:             0.1.4.0
synopsis:            Async IO tracer for plow-log
description:         Async logging backend for plow-log 
category:            Logging
homepage:            https://github.com/plow-technologies/plow-log-async.git#readme
bug-reports:         https://github.com/plow-technologies/plow-log-async.git/issues
copyright:           Plow-Technologies LLC
license:             MIT
license-file:        LICENSE
author:              Alberto Valverde
maintainer:          info@plowtech.net
build-type:          Simple
extra-source-files:  CHANGELOG.md

source-repository head
  type: git
  location: https://github.com/plow-technologies/plow-log-async.git

library
  exposed-modules:
    Plow.Logging.Async
  hs-source-dirs:
      src
  ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates
  build-depends:
      base >= 4.13 && < 4.18
    , plow-log >= 0.1.6 && < 0.2
    , conduit >= 1.3.4 && < 1.4
    , stm-conduit >= 4.0.1 && < 4.1
    , text >= 2.0.1 && < 2.1
    , unliftio >= 0.2.22 && < 0.3
    , time >= 1.9.3 && < 1.12
  default-language: Haskell2010