cabal-version: 2.4
name: co-log-concurrent
version: 0.5.1.1
synopsis: Asynchronous backend for co-log library
description: Buiding block for writing asynchronous logger pipelines.
homepage: https://github.com/qnikst/co-log-concurrent/
bug-reports: https://github.com/qnikst/co-log-concurrent/issues
license: MPL-2.0
author: Alexander Vershilov
maintainer: alexander.vershilov@sirius.online
copyright: 2018-2020 Kowainik, 2020 Alexander Vershilov
category: Logging, Contravariant, Comonad
stability: provisional
build-type: Simple
extra-source-files: CHANGELOG.markdown
README.markdown
tested-with:
GHC ==9.4.4
|| ==8.10.7
|| ==8.8.4
source-repository head
type: git
location: https://github.com/cheopslab/co-log-concurrent.git
common common-options
build-depends: base >= 4.10.1.0 && < 4.20
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
-freverse-errors
-Wpartial-fields
if impl(ghc >= 8.8.1)
ghc-options: -Wmissing-deriving-strategies
-Werror=missing-deriving-strategies
default-language: Haskell2010
default-extensions: ConstraintKinds
DerivingStrategies
DeriveGeneric
GeneralizedNewtypeDeriving
LambdaCase
OverloadedStrings
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TupleSections
TypeApplications
ViewPatterns
library
import: common-options
hs-source-dirs: src
exposed-modules: Colog.Concurrent
Colog.Concurrent.Internal
build-depends: co-log-core ^>= 0.3
, stm >= 2.4 && < 2.6
default-language: Haskell2010
default-extensions: ConstraintKinds
DerivingStrategies
DeriveGeneric
GeneralizedNewtypeDeriving
LambdaCase
OverloadedStrings
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TupleSections
TypeApplications
ViewPatterns