]> woffs.de Git - fd/haskell-amqp-utils.git/blob - amqp-utils.cabal
formatting
[fd/haskell-amqp-utils.git] / amqp-utils.cabal
1 name:                amqp-utils
2
3 version:             0.4.3.0
4
5 synopsis:            Generic Haskell AMQP tools
6
7 description:         AMQP tools consisting of:
8   AMQP consumer which can
9   create a temporary queue and attach it to an exchange, or
10   attach to an existing queue;
11   display header and body info;
12   save message bodies to files;
13   call a callback script.
14   AMQP publisher with file, line-by-line and
15   hotfolder capabilities.
16   AMQP rpc client and server.
17
18 license:             GPL-3
19
20 license-file:        LICENSE
21
22 author:              Frank Doepper
23
24 maintainer:          [email protected]
25
26 category:            Network
27
28 build-type:          Simple
29
30 extra-source-files:  ChangeLog.md, README.md
31
32 cabal-version:       >=1.10
33
34 Tested-With: GHC ==7.10.2 || ==8.0.2 || ==8.2.2 || ==8.4.4 || >= 8.6.5
35
36 executable konsum
37   main-is:             konsum.hs
38   build-depends:       base >=4.6 && <5,
39                        containers,
40                        text,
41                        connection,
42                        data-default-class,
43                        time,
44                        process,
45                        directory,
46                        bytestring,
47                        utf8-string,
48                        x509-system,
49                        network > 2.6,
50                        tls >= 1.3.9,
51                        amqp >=0.19
52
53   ghc-options:         -threaded -Wall
54
55   default-language:    Haskell2010
56
57   other-modules:       Network.AMQP.Utils.Options,
58                        Network.AMQP.Utils.Helpers,
59                        Network.AMQP.Utils.Connection,
60                        Paths_amqp_utils
61
62 executable agitprop
63   main-is:             agitprop.hs
64   build-depends:       base >=4.6 && <5,
65                        containers,
66                        text,
67                        connection,
68                        data-default-class,
69                        time,
70                        process,
71                        directory,
72                        bytestring,
73                        utf8-string,
74                        x509-system,
75                        network > 2.6,
76                        tls >= 1.3.9,
77                        amqp >=0.19,
78                        unix >= 2.7,
79                        hinotify >= 0.3.8,
80                        magic
81
82   ghc-options:         -threaded -Wall
83
84   default-language:    Haskell2010
85
86   other-modules:       Network.AMQP.Utils.Options,
87                        Network.AMQP.Utils.Helpers,
88                        Network.AMQP.Utils.Connection,
89                        Paths_amqp_utils
90
91 executable plane
92   main-is:             plane.hs
93   build-depends:       base >=4.6 && <5,
94                        containers,
95                        text,
96                        connection,
97                        data-default-class,
98                        time,
99                        process,
100                        directory,
101                        bytestring,
102                        utf8-string,
103                        x509-system,
104                        network > 2.6,
105                        tls >= 1.3.9,
106                        amqp >=0.19,
107                        unix >= 2.7
108
109   ghc-options:         -threaded -Wall
110
111   default-language:    Haskell2010
112
113   other-modules:       Network.AMQP.Utils.Options,
114                        Network.AMQP.Utils.Helpers,
115                        Network.AMQP.Utils.Connection,
116                        Paths_amqp_utils
117
118 executable arbeite
119   main-is:             arbeite.hs
120   build-depends:       base >=4.6 && <5,
121                        containers,
122                        text,
123                        connection,
124                        data-default-class,
125                        time,
126                        process,
127                        directory,
128                        bytestring,
129                        utf8-string,
130                        x509-system,
131                        network > 2.6,
132                        tls >= 1.3.9,
133                        amqp >=0.19,
134                        unix >= 2.7
135
136   ghc-options:         -threaded -Wall
137
138   default-language:    Haskell2010
139
140   other-modules:       Network.AMQP.Utils.Options,
141                        Network.AMQP.Utils.Helpers,
142                        Network.AMQP.Utils.Connection,
143                        Paths_amqp_utils
144
145 source-repository head
146   type:                git
147   location:            git://woffs.de/git/fd/haskell-amqp-utils.git