-
Notifications
You must be signed in to change notification settings - Fork 1
/
hworker.cabal
45 lines (43 loc) · 1.44 KB
/
hworker.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
name: hworker
version: 0.2.0
synopsis: A reliable at-least-once job queue built on top of redis.
description: See README.
homepage: http://github.com/positiondev/hworker
license: ISC
license-file: LICENSE
author: Daniel Patterson
maintainer: [email protected]
build-type: Simple
extra-source-files: README.md CHANGELOG.md
cabal-version: >=1.10
library
exposed-modules: System.Hworker
other-modules: Data.Aeson.Helpers
build-depends: base >= 4.7 && < 5
, aeson
, hedis >= 0.6.5
, text
, bytestring
, time >= 1.5
, attoparsec
, uuid >= 1.2.6
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
Test-Suite hworker-test
type: exitcode-stdio-1.0
hs-source-dirs: src test
main-is: Spec.hs
other-modules: Data.Aeson.Helpers
, System.Hworker
build-depends: base >= 4.7 && < 5
, aeson
, hedis >= 0.6.5
, text
, bytestring
, time >= 1.5
, attoparsec
, uuid >= 1.2.6
, hspec >= 2
, hspec-contrib
, HUnit