-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.yaml
54 lines (47 loc) · 1.14 KB
/
package.yaml
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
name: amqp-worker
version: 2.0.0
github: "seanhess/amqp-worker"
author: "Sean Hess"
maintainer: "[email protected]"
copyright: "Orbital Labs"
extra-source-files:
- README.md
- CHANGELOG.md
synopsis: Type-safe AMQP workers
category: Network
description: Please see the README on GitHub at <https://github.com/seanhess/amqp-worker#readme>
dependencies:
- base >=4.9 && <5
- aeson >=2.0 && <2.3
- amqp >=0.20 && <1
- bytestring >=0.11 && <0.12
- exceptions >=0.10 && <0.11
- data-default >=0.7 && <0.8
- monad-loops >=0.4 && <0.5
- mtl >=2.2 && <2.3
- resource-pool >=0.3 && <0.5
- text >=1.2 && <1.3
library:
source-dirs: src
executables:
example:
main: Example.hs
source-dirs: example
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall
dependencies:
- amqp-worker
tests:
test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall
dependencies:
- amqp-worker