-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsimple-log.cabal
67 lines (63 loc) · 1.83 KB
/
simple-log.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
Name: simple-log
Version: 0.9.12
Synopsis: Simple log for Haskell
Description: Log library for Haskell
License: BSD3
License-file: LICENSE
Author: Alexandr `Voidex` Ruchkin
Homepage: http://github.com/mvoidex/simple-log
Maintainer: [email protected]
Category: Logging
Build-type: Simple
Cabal-version: >= 1.10
source-repository head
type: git
location: git://github.com/mvoidex/simple-log.git
library
hs-source-dirs: src
if !impl(ghc >= 8.0)
build-depends:
semigroups >= 0.18.2 && < 0.19
build-depends:
base >= 4.0 && < 6,
async >= 2.0 && < 3.0,
base-unicode-symbols >= 0.2 && < 0.3,
containers >= 0.5 && < 0.7,
data-default >= 0.5 && < 0.8,
deepseq >= 1.4 && < 1.5,
directory >= 1.2 && < 1.4,
exceptions >= 0.8 && < 0.11,
filepath >= 1.4 && < 1.5,
hformat == 0.3.*,
microlens == 0.4.*,
microlens-platform >= 0.3 && < 0.5,
mmorph >= 1.0 && < 1.2,
mtl >= 2.2 && < 2.3,
SafeSemaphore >= 0.9.0 && < 1.0.0,
text >= 0.11.0 && < 2.0.0,
time >= 1.5 && < 1.10,
transformers >= 0.4 && < 0.6
exposed-modules:
System.Log.Simple
System.Log.Simple.Base
System.Log.Simple.Chan
System.Log.Simple.Monad
System.Log.Simple.Text
System.Log.Simple.Stream
System.Log.Simple.File
default-language: Haskell2010
default-extensions: UnicodeSyntax
ghc-options: -Wall -fno-warn-tabs
test-suite test
main-is: Test.hs
hs-source-dirs: tests
ghc-options: -threaded -Wall -fno-warn-tabs
type: exitcode-stdio-1.0
default-language: Haskell2010
default-extensions: UnicodeSyntax
build-depends:
base >= 4.0 && < 6,
simple-log,
hspec >= 2.3 && < 2.8,
microlens-platform >= 0.3 && < 0.5,
text >= 0.11.0 && < 2.0.0