-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgearman-haskell.cabal
56 lines (53 loc) · 1.78 KB
/
gearman-haskell.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
name: gearman-haskell
version: 0.3.1
synopsis: Haskell implementation of the Gearman protocol.
-- description:
homepage: https://github.com/anchor/gearman-haskell
license: MIT
license-file: LICENSE
author: Sharif Olorin
maintainer: [email protected]
-- copyright:
category: System
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
exposed-modules: System.Gearman.Error
System.Gearman.Protocol
System.Gearman.Connection
System.Gearman.Worker
other-modules: System.Gearman.Job
build-depends: base >=4.6,
data-endian,
bytestring,
binary,
HTTP,
network < 2.6,
transformers,
mtl,
containers,
async,
stm,
stm-chans,
pretty-hex,
base64-bytestring
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -O2
-threaded
-Wall
test-suite check
type: exitcode-stdio-1.0
build-depends: base >= 4.6,
bytestring,
gearman-haskell,
HUnit,
hspec,
transformers,
mtl,
pretty-hex,
base64-bytestring
hs-source-dirs: tests
main-is: check.hs
default-language: Haskell2010