-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontrol-logger.cabal
47 lines (46 loc) · 1.54 KB
/
control-logger.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
cabal-version: 2.4
name: control-logger
version: 0.1.0.0
synopsis: Logger used by all projects
license-file: LICENSE
build-type: Simple
library
hs-source-dirs: src
ghc-options: -Wall
if !impl(ghcjs)
exposed-modules: Control.Logger
Control.Logger.Katip
Control.Logger.Katip.Utils
Control.Logger.Orphans
exposed-modules: Control.Logger.Internal
build-depends: base
, aeson
, bytestring
, control-has
, control-has-katip
, deepseq
, exceptions
, fast-logger
, http-client
, lens
, monad-logger
, mtl
, shakespeare
, text
, time
, unordered-containers
if !impl(ghcjs)
build-depends: katip >= 0.8.8.0
, optparse-applicative
default-language: Haskell2010
default-extensions: RankNTypes
DataKinds
FlexibleContexts
FlexibleInstances
LambdaCase
OverloadedStrings
ScopedTypeVariables
DeriveGeneric
ConstraintKinds
RecordWildCards
TypeSynonymInstances