-
Notifications
You must be signed in to change notification settings - Fork 2
/
monad-logger-extras.cabal
56 lines (46 loc) · 1.57 KB
/
monad-logger-extras.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
cabal-version: >=1.10
name: monad-logger-extras
version: 0.1.1.1
synopsis:
Utilities for composing loggers, coloring output, plus a few orphan instances.
description:
Build composable logging backends for monad-logger. This package includes a few composable backends (including a posix syslog backend) and some extras like log output coloring utilities.
homepage: https://github.com/obsidiansystems/monad-logger-extras
bug-reports:
https://github.com/obsidiansystems/monad-logger-extras/issues
license: BSD3
license-file: LICENSE
author: Obsidian Systems LLC
maintainer: [email protected]
copyright: 2020 Obsidian Systems LLC
category: System
build-type: Simple
extra-source-files:
CHANGELOG.md
README.md
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.2
library
exposed-modules:
Control.Monad.Logger.Extras
Control.Monad.Logger.Orphans
build-depends:
ansi-terminal >=0.9 && <0.12
, base >=4.12 && <5
, bytestring >=0.10 && <0.12
, hsyslog >=5 && <5.1
, monad-logger >=0.3.36 && <0.4
, mtl >=2.2 && <2.3
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
executable readme
build-depends:
base
, monad-logger
, monad-logger-extras
default-language: Haskell2010
main-is: README.lhs
ghc-options: -Wall -optL -q
source-repository head
type: git
location: git://github.com/obsidiansystems/monad-logger-extras