-
Notifications
You must be signed in to change notification settings - Fork 4
/
co-log-concurrent.cabal
79 lines (71 loc) · 2.75 KB
/
co-log-concurrent.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
cabal-version: 2.4
name: co-log-concurrent
version: 0.5.1.0
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: [email protected]
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 ==0.6.2
|| ==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.19
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