This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdistributed-process-extras.cabal
179 lines (172 loc) · 6.98 KB
/
distributed-process-extras.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
name: distributed-process-extras
version: 0.3.5
cabal-version: >=1.8
build-type: Simple
license: BSD3
license-file: LICENCE
stability: experimental
Copyright: Tim Watson 2012 - 2017
Author: Tim Watson
Maintainer: Tim Watson <watson.timothy@gmail.com>
Homepage: http://github.com/haskell-distributed/distributed-process-extras
Bug-Reports: http://github.com/haskell-distributed/distributed-process-extras/issues
synopsis: Cloud Haskell Extras
description: Supporting library, providing common types and utilities used by the
various libraries built on top of distributed-process
category: Control
Tested-With: GHC==7.10.3 GHC==8.0.1 GHC==8.0.2
data-dir: ""
extra-source-files: ChangeLog
source-repository head
type: git
location: https://github.com/haskell-distributed/distributed-process-extras
flag old-locale
description: If false then depend on time >= 1.5.
.
If true then depend on time < 1.5 together with old-locale.
default: False
library
build-depends: base >= 4.8 && < 5,
distributed-process >= 0.6.0 && < 0.8,
binary >= 0.6.3.0 && < 0.9,
deepseq >= 1.3.0.1 && < 1.6,
mtl >= 2.0 && < 2.4,
containers >= 0.4 && < 0.6,
exceptions >= 0.5,
hashable >= 1.2.0.5 && < 1.3,
unordered-containers >= 0.2.3.0 && < 0.3,
fingertree < 0.2,
stm >= 2.4 && < 2.5,
transformers >= 0.2 && < 0.6
if flag(old-locale)
Build-Depends: time < 1.5, old-locale >= 1.0 && <1.1
else
Build-Depends: time >= 1.5
extensions: CPP
other-extensions: ExistentialQuantification
ghc-options: -Wall
HS-Source-Dirs: src
exposed-modules:
Control.Distributed.Process.Extras,
Control.Distributed.Process.Extras.Call,
Control.Distributed.Process.Extras.Monitoring,
Control.Distributed.Process.Extras.SystemLog,
Control.Distributed.Process.Extras.Time,
Control.Distributed.Process.Extras.Timer,
Control.Distributed.Process.Extras.UnsafePrimitives,
Control.Concurrent.Utils,
Control.Distributed.Process.Extras.Internal.Containers.MultiMap,
Control.Distributed.Process.Extras.Internal.Primitives,
Control.Distributed.Process.Extras.Internal.Types,
Control.Distributed.Process.Extras.Internal.Queue.SeqQ,
Control.Distributed.Process.Extras.Internal.Queue.PriorityQ
Control.Distributed.Process.Extras.Internal.Unsafe
test-suite InternalQueueTests
type: exitcode-stdio-1.0
x-uses-tf: true
build-depends:
base >= 4.6 && < 5,
ansi-terminal >= 0.5 && < 0.9,
distributed-process >= 0.6.0 && < 0.8,
distributed-process-extras,
distributed-process-systest >= 0.1.0 && < 0.3.0,
HUnit >= 1.2 && < 2,
test-framework >= 0.6 && < 0.9,
test-framework-hunit,
QuickCheck >= 2.4,
test-framework-quickcheck2,
rematch >= 0.2.0.0,
ghc-prim
hs-source-dirs:
tests
ghc-options: -Wall -rtsopts
extensions: CPP
main-is: TestQueues.hs
cpp-options: -DTESTING
test-suite PrimitivesTests
type: exitcode-stdio-1.0
x-uses-tf: true
build-depends:
base >= 4.6 && < 5,
ansi-terminal >= 0.5 && < 0.9,
distributed-process >= 0.6.0 && < 0.8,
distributed-process-extras,
distributed-process-systest >= 0.1.0 && < 0.3.0,
network-transport >= 0.4 && < 0.6,
mtl,
containers >= 0.4 && < 0.6,
network-transport-tcp >= 0.4 && < 0.6,
binary >= 0.6.3.0 && < 0.9,
deepseq >= 1.3.0.1 && < 1.6,
network >= 2.3 && < 2.7,
HUnit >= 1.2 && < 2,
stm >= 2.3 && < 2.5,
test-framework >= 0.6 && < 0.9,
test-framework-hunit,
rematch >= 0.2.0.0,
transformers
hs-source-dirs:
tests
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
extensions: CPP
main-is: TestPrimitives.hs
test-suite TimerTests
type: exitcode-stdio-1.0
x-uses-tf: true
build-depends:
base >= 4.6 && < 5,
ansi-terminal >= 0.5 && < 0.9,
deepseq >= 1.3.0.1 && < 1.6,
distributed-process >= 0.6.0 && < 0.8,
distributed-process-extras,
distributed-process-systest >= 0.1.0 && < 0.3.0,
network-transport >= 0.4 && < 0.6,
network-transport-tcp >= 0.4 && < 0.6,
HUnit >= 1.2 && < 2,
test-framework >= 0.6 && < 0.9,
test-framework-hunit,
QuickCheck >= 2.4,
test-framework-quickcheck2,
rematch >= 0.2.0.0,
ghc-prim
hs-source-dirs:
tests
ghc-options: -Wall -rtsopts
extensions: CPP
main-is: TestTimer.hs
cpp-options: -DTESTING
test-suite LoggerTests
type: exitcode-stdio-1.0
-- x-uses-tf: true
build-depends:
base >= 4.6 && < 5,
ansi-terminal >= 0.5 && < 0.9,
containers,
hashable,
unordered-containers >= 0.2.3.0 && < 0.3,
distributed-process >= 0.6.0 && < 0.8,
distributed-process-extras,
distributed-process-systest >= 0.1.0 && < 0.3.0,
distributed-static,
bytestring,
data-accessor,
fingertree < 0.2,
network-transport >= 0.4 && < 0.6,
deepseq >= 1.3.0.1 && < 1.6,
mtl,
network-transport-tcp >= 0.4 && < 0.6,
binary >= 0.6.3.0 && < 0.9,
network >= 2.3 && < 2.7,
HUnit >= 1.2 && < 2,
stm >= 2.3 && < 2.5,
time > 1.4 && < 1.9,
test-framework >= 0.6 && < 0.9,
test-framework-hunit,
transformers,
rematch >= 0.2.0.0,
ghc-prim
hs-source-dirs:
tests
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
extensions: CPP
main-is: TestLog.hs