-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhbeanstalk.cabal
47 lines (43 loc) · 1.42 KB
/
hbeanstalk.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
Name: hbeanstalk
Version: 0.2.4
License: BSD3
License-file: LICENSE
Cabal-Version: >= 1.10
Copyright:
Copyright (c) 2010, Greg Heartsfield
Author: Greg Heartsfield <[email protected]>
Maintainer: Greg Heartsfield <[email protected]>
Homepage: http://github.com/scsibug/hbeanstalk/
Category: Network
Stability: Alpha
build-type: Simple
Synopsis: Client for the beanstalkd workqueue service.
Description: This is the hbeanstalk library. It provides a client
interface to a beanstalkd server, allowing Haskell to be
a producer and/or a consumer of work items. Let Haskell
do your heavy lifting!
extra-source-files: README.markdown, Tests.hs
source-repository head
type: git
location: git://github.com/scsibug/hbeanstalk.git
Library
default-language: Haskell2010
ghc-options: -Wall
Build-depends: base >= 4 && < 5, network >= 2.3, containers >= 0.3.0.0,
blaze-builder >= 0.2.1.0, bytestring >= 0.9.1.7,
attoparsec
Exposed-modules:
Network.Beanstalk
Test-suite test
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Tests.hs
build-depends: base
, attoparsec
, HUnit
, blaze-builder
, bytestring
, containers
, hbeanstalk
, network
, random