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 10
/
distributed-process-async.cabal
76 lines (73 loc) · 3 KB
/
distributed-process-async.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
name: distributed-process-async
version: 0.2.7
cabal-version: >=1.10
build-type: Simple
license: BSD3
license-file: LICENCE
stability: experimental
Copyright: Tim Watson 2012 - 2016
Author: Tim Watson
Maintainer: Tim Watson <[email protected]>
Homepage: http://github.com/haskell-distributed/distributed-process-async
Bug-Reports: http://github.com/haskell-distributed/distributed-process-async/issues
synopsis: Cloud Haskell Async API
description: This package provides a higher-level interface over Processes, in which an Async a is a
concurrent, possibly distributed Process that will eventually deliver a value of type a.
The package provides ways to create Async computations, wait for their results, and cancel them.
category: Control
tested-with: GHC == 7.8.4 GHC == 7.10.3
source-repository head
type: git
location: https://github.com/haskell-distributed/distributed-process-async
library
build-depends:
base >= 4.4 && < 5,
data-accessor >= 0.2.2.3,
distributed-process >= 0.6.1 && < 0.8,
exceptions >= 0.8.2.1 && < 1.0,
binary >= 0.6.3.0 && < 0.9,
deepseq >= 1.3.0.1 && < 1.6,
mtl,
containers >= 0.4 && < 0.7,
hashable >= 1.2.0.5 && < 1.5,
unordered-containers >= 0.2.3.0 && < 0.3,
fingertree < 0.2,
stm >= 2.4 && < 2.6,
time >= 1.8.0.2,
transformers
default-extensions: CPP
InstanceSigs
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
exposed-modules:
Control.Distributed.Process.Async
other-modules:
Control.Distributed.Process.Async.Internal.Types
test-suite AsyncTests
type: exitcode-stdio-1.0
x-uses-tf: true
build-depends:
base >= 4.4 && < 5,
ansi-terminal >= 0.5 && < 0.9,
distributed-process,
distributed-process-async,
distributed-process-systest >= 0.2.0,
exceptions >= 0.8.2.1 && < 1.0,
network >= 2.5 && < 2.7,
network-transport >= 0.4 && < 0.6,
network-transport-tcp >= 0.6 && < 0.9,
binary >= 0.6.3.0 && < 0.9,
deepseq >= 1.3.0.1 && < 1.6,
-- 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
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
default-extensions: CPP
main-is: TestAsync.hs