-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsr-log.cabal
47 lines (43 loc) · 1.45 KB
/
sr-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
Name: sr-log
Version: 1.16.3
License: BSD3
Author: David Fox, Clifford Beshers
Category: Unclassified
Synopsis: Logging functions, particularly for a GHCJS client
Description: A mimimal, contained library of logging utilities with minimal package and runtime overhead.
Maintainer: David Fox <[email protected]>, Clifford Beshers <[email protected]>
Homepage: https://github.com/seereason/sr-log
Build-Type: Simple
Cabal-Version: >= 1.10
Tested-With: GHC==8.6.5
Library
default-language: Haskell2010
GHC-Options: -Wall -Wredundant-constraints
Build-Depends:
base >= 4.9 && < 5,
cereal,
data-default,
hslogger,
HUnit,
lens,
mtl,
pretty,
safecopy,
time
HS-Source-Dirs: src
if !impl(ghcjs)
Exposed-Modules: SeeReason.LogServer
Build-Depends:
directory,
process,
template-haskell,
text
Default-Extensions: ConstraintKinds, CPP, DataKinds, DeriveDataTypeable, DeriveFunctor, DeriveGeneric
Default-Extensions: FlexibleInstances, FlexibleContexts, MultiParamTypeClasses, RankNTypes
Default-Extensions: ScopedTypeVariables, StandaloneDeriving, TupleSections, TypeApplications, TypeFamilies
Exposed-modules: SeeReason.Log SeeReason.LogPure SeeReason.LogClient SeeReason.LogFormat SeeReason.SrcLoc
test-suite logtests
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Tests.hs
build-depends: base, HUnit, lens, sr-log