-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathdistributed-process-async.cabal
More file actions
72 lines (68 loc) · 2.73 KB
/
distributed-process-async.cabal
File metadata and controls
72 lines (68 loc) · 2.73 KB
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
cabal-version: 3.0
name: distributed-process-async
version: 0.2.11
build-type: Simple
license: BSD-3-Clause
license-file: LICENCE
stability: experimental
Copyright: Tim Watson 2012 - 2016
Author: Tim Watson
maintainer: The Distributed Haskell team
Homepage: http://github.com/haskell-distributed/distributed-process
Bug-Reports: http://github.com/haskell-distributed/distributed-process/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==8.10.7 GHC==9.0.2 GHC==9.2.8 GHC==9.4.8 GHC==9.6.7 GHC==9.8.4 GHC==9.10.3 GHC==9.12.2 GHC==9.14.1
extra-doc-files: CHANGELOG.md
source-repository head
Type: git
Location: https://github.com/haskell-distributed/distributed-process
SubDir: packages/distributed-process-async
common warnings
ghc-options: -Wall
-Wcompat
-Widentities
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wredundant-constraints
-fhide-source-paths
-Wpartial-fields
-Wunused-packages
library
import: warnings
build-depends:
base >= 4.14 && < 5,
distributed-process >= 0.6.1 && < 0.8,
exceptions >= 0.10 && < 1.0,
binary >= 0.8 && < 0.9,
stm >= 2.4 && < 2.6,
default-extensions: CPP
InstanceSigs
hs-source-dirs: src
default-language: Haskell2010
exposed-modules:
Control.Distributed.Process.Async
other-modules:
Control.Distributed.Process.Async.Internal.Types
test-suite AsyncTests
import: warnings
type: exitcode-stdio-1.0
x-uses-tf: true
build-depends:
base >= 4.14 && < 5,
distributed-process,
distributed-process-async,
distributed-process-systest ^>= 0.4,
network-transport >= 0.4 && < 0.6,
network-transport-tcp >= 0.6 && < 0.9,
binary >= 0.8 && < 0.9,
tasty >= 1.5 && <1.6,
tasty-hunit >=0.10 && <0.11,
hs-source-dirs: tests
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
default-extensions: CPP
main-is: TestAsync.hs