-
Notifications
You must be signed in to change notification settings - Fork 0
/
caster.cabal
65 lines (62 loc) · 2.06 KB
/
caster.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
name: caster
version: 0.0.3.0
synopsis: Multicast, thread-safe, and fast logger.
description: Please see the README on GitHub at <https://github.com/kirisaki/caster#readme>
homepage: https://github.com/kirisaki/caster#readme
bug-reports: https://github.com/kirisaki/caster/issues
license: BSD3
license-file: LICENSE
author: Akihito KIRISAKI
maintainer: [email protected]
copyright: Akihito KIRISAKI
category: System
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/kirisaki/caster
library
exposed-modules: System.Log.Caster
, System.Log.Caster.Core
, System.Log.Caster.Monad
build-depends: base >= 4.10
, bytestring >= 0.10.8.2
, fast-builder >= 0.1.0.0
, stm >= 2.5.0.0
, text >= 1.2.3.1
, unix-time >= 0.4.5
hs-source-dirs: src
default-language: Haskell2010
default-extensions: LambdaCase
, OverloadedStrings
, FlexibleInstances
, FlexibleContexts
, TypeSynonymInstances
, MultiParamTypeClasses
, ExistentialQuantification
test-suite test
type: exitcode-stdio-1.0
main-is: Driver.hs
other-modules:
CasterTest
default-language: Haskell2010
hs-source-dirs:
test
default-extensions: LambdaCase
, FlexibleInstances
build-depends:
base >= 4 && < 5
, caster
, bytestring
, directory
, mtl
, text
, fast-builder
, QuickCheck
, quickcheck-instances
, stm
, tasty-hunit
, tasty
, tasty-discover
, tasty-quickcheck