packages feed

plow-log-0.1.6.0: plow-log.cabal

cabal-version:       >=1.10
name:                plow-log
version:             0.1.6.0
synopsis:            Contravariant logging library
description:         Contravariant logging library agnostic to the logging backend
category:            Logging
homepage:            https://github.com/plow-technologies/plow-log.git#readme
bug-reports:         https://github.com/plow-technologies/plow-log.git/issues
copyright:           Plow-Technologies LLC
license:             MIT
license-file:        LICENSE
author:              Sam Balco
maintainer:          samuel.balco@plowtech.net
build-type:          Simple
extra-source-files:  CHANGELOG.md

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

library
  exposed-modules:
      Plow.Logging
    , Plow.Logging.Message
    , Plow.Throwing
  other-modules:
      Plow.Logging.EnumerableConstructors
  hs-source-dirs:
      src
  ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates
  build-depends:
      base >= 4.13 && < 4.18
      , aeson >= 2.1.1 && < 2.2
      , text >= 1.2.5 && < 2.1
  default-language: Haskell2010