forked from haskell-distributed/distributed-process
-
Notifications
You must be signed in to change notification settings - Fork 0
/
distributed-process.cabal
203 lines (190 loc) · 8.2 KB
/
distributed-process.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
Name: distributed-process
Version: 0.4.2
Cabal-Version: >=1.8
Build-Type: Simple
License: BSD3
License-File: LICENSE
Copyright: Well-Typed LLP
Author: Duncan Coutts, Nicolas Wu, Edsko de Vries
Stability: experimental
Homepage: http://haskell-distributed.github.com/
Bug-Reports: http://cloud-haskell.atlassian.net
Synopsis: Cloud Haskell: Erlang-style concurrency in Haskell
Description: This is an implementation of Cloud Haskell, as described in
/Towards Haskell in the Cloud/ by Jeff Epstein, Andrew Black,
and Simon Peyton Jones
(<http://research.microsoft.com/en-us/um/people/simonpj/papers/parallel/>),
although some of the details are different. The precise message
passing semantics are based on /A unified semantics for future Erlang/
by Hans Svensson, Lars-Åke Fredlund and Clara Benac Earle.
You will probably also want to install a Cloud Haskell backend such
as distributed-process-simplelocalnet.
Tested-With: GHC==7.2.2 GHC==7.4.1 GHC==7.4.2
Category: Control
Source-Repository head
Type: git
Location: https://github.com/haskell-distributed/distributed-process
SubDir: distributed-process
flag th
description: Build with Template Haskell support
default: True
flag benchmarks
description: Build benchmarks
default: False
Library
Build-Depends: base >= 4.4 && < 5,
binary >= 0.5 && < 0.7,
network-transport >= 0.3 && < 0.4,
stm >= 2.4 && < 2.5,
transformers >= 0.2 && < 0.4,
mtl >= 2.0 && < 2.2,
data-accessor >= 0.2 && < 0.3,
bytestring >= 0.9 && < 0.11,
containers >= 0.4 && < 0.6,
old-locale >= 1.0 && < 1.1,
time >= 1.2 && < 1.5,
random >= 1.0 && < 1.1,
ghc-prim >= 0.2 && < 0.4,
distributed-static >= 0.2 && < 0.3,
rank1dynamic >= 0.1 && < 0.2,
syb >= 0.3 && < 0.4
Exposed-modules: Control.Distributed.Process,
Control.Distributed.Process.Serializable,
Control.Distributed.Process.Closure,
Control.Distributed.Process.Node,
Control.Distributed.Process.Internal.Primitives,
Control.Distributed.Process.Internal.CQueue,
Control.Distributed.Process.Internal.Types,
Control.Distributed.Process.Internal.Trace,
Control.Distributed.Process.Internal.Closure.BuiltIn,
Control.Distributed.Process.Internal.Messaging,
Control.Distributed.Process.Internal.StrictList,
Control.Distributed.Process.Internal.StrictMVar,
Control.Distributed.Process.Internal.WeakTQueue
Control.Distributed.Process.Internal.StrictContainerAccessors
Extensions: RankNTypes,
ScopedTypeVariables,
FlexibleInstances,
UndecidableInstances,
ExistentialQuantification,
GADTs,
GeneralizedNewtypeDeriving,
DeriveDataTypeable,
CPP,
BangPatterns
ghc-options: -Wall
HS-Source-Dirs: src
if flag(th)
Build-Depends: template-haskell >= 2.6 && < 2.9
Exposed-modules: Control.Distributed.Process.Internal.Closure.TH
CPP-Options: -DTemplateHaskellSupport
Test-Suite TestCH
Type: exitcode-stdio-1.0
Main-Is: TestCH.hs
Build-Depends: base >= 4.4 && < 5,
random >= 1.0 && < 1.1,
ansi-terminal >= 0.5 && < 0.6,
distributed-process,
network-transport >= 0.3 && < 0.4,
network-transport-tcp >= 0.3 && < 0.4,
binary >= 0.5 && < 0.7,
network >= 2.3 && < 2.5,
HUnit >= 1.2 && < 1.3,
test-framework >= 0.6 && < 0.9,
test-framework-hunit >= 0.2.0 && < 0.4
Extensions: CPP,
ScopedTypeVariables,
DeriveDataTypeable,
GeneralizedNewtypeDeriving
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
HS-Source-Dirs: tests
Test-Suite TestClosure
Type: exitcode-stdio-1.0
Main-Is: TestClosure.hs
Build-Depends: base >= 4.4 && < 5,
random >= 1.0 && < 1.1,
ansi-terminal >= 0.5 && < 0.6,
distributed-static >= 0.2 && < 0.3,
distributed-process,
network-transport >= 0.3 && < 0.4,
network-transport-tcp >= 0.3 && < 0.4,
bytestring >= 0.9 && < 0.11,
network >= 2.3 && < 2.5,
HUnit >= 1.2 && < 1.3,
test-framework >= 0.6 && < 0.9,
test-framework-hunit >= 0.2.0 && < 0.4
Extensions: CPP,
ScopedTypeVariables
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
HS-Source-Dirs: tests
Test-Suite TestStats
Type: exitcode-stdio-1.0
Main-Is: TestStats.hs
Build-Depends: base >= 4.4 && < 5,
random >= 1.0 && < 1.1,
ansi-terminal >= 0.5 && < 0.6,
containers >= 0.4 && < 0.6,
stm >= 2.4 && < 2.5,
distributed-process,
network-transport >= 0.3 && < 0.4,
network-transport-tcp >= 0.3 && < 0.4,
binary >= 0.5 && < 0.7,
network >= 2.3 && < 2.5,
HUnit >= 1.2 && < 1.3,
test-framework >= 0.6 && < 0.9,
test-framework-hunit >= 0.2.0 && < 0.4
Extensions: CPP,
ScopedTypeVariables,
DeriveDataTypeable,
GeneralizedNewtypeDeriving
ghc-options: -Wall -debug -eventlog -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
HS-Source-Dirs: tests
Executable distributed-process-throughput
if flag(benchmarks)
Build-Depends: base >= 4.4 && < 5,
distributed-process,
network-transport-tcp >= 0.3 && < 0.4,
bytestring >= 0.9 && < 0.11,
binary >= 0.5 && < 0.7
else
buildable: False
Main-Is: benchmarks/Throughput.hs
ghc-options: -Wall
Extensions: BangPatterns
Executable distributed-process-latency
if flag(benchmarks)
Build-Depends: base >= 4.4 && < 5,
distributed-process,
network-transport-tcp >= 0.3 && < 0.4,
bytestring >= 0.9 && < 0.11,
binary >= 0.5 && < 0.7
else
buildable: False
Main-Is: benchmarks/Latency.hs
ghc-options: -Wall
Extensions: BangPatterns
Executable distributed-process-channels
if flag(benchmarks)
Build-Depends: base >= 4.4 && < 5,
distributed-process,
network-transport-tcp >= 0.3 && < 0.4,
bytestring >= 0.9 && < 0.11,
binary >= 0.5 && < 0.7
else
buildable: False
Main-Is: benchmarks/Channels.hs
ghc-options: -Wall
Extensions: BangPatterns
Executable distributed-process-spawns
if flag(benchmarks)
Build-Depends: base >= 4.4 && < 5,
distributed-process,
network-transport-tcp >= 0.3 && < 0.4,
bytestring >= 0.9 && < 0.11,
binary >= 0.5 && < 0.7
else
buildable: False
Main-Is: benchmarks/Spawns.hs
ghc-options: -Wall
Extensions: BangPatterns