-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathdistributed-process-simplelocalnet.cabal
More file actions
67 lines (63 loc) · 2.69 KB
/
distributed-process-simplelocalnet.cabal
File metadata and controls
67 lines (63 loc) · 2.69 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
cabal-version: 3.0
Name: distributed-process-simplelocalnet
Version: 0.3.3
Build-Type: Simple
License: BSD-3-Clause
License-File: LICENSE
Copyright: Well-Typed LLP
Author: Duncan Coutts, Nicolas Wu, Edsko de Vries
maintainer: The Distributed Haskell team
Stability: experimental
Homepage: https://haskell-distributed.github.io
Bug-Reports: https://github.com/haskell-distributed/distributed-process/issues
Synopsis: Simple zero-configuration backend for Cloud Haskell
Description: Simple backend based on the TCP transport which offers node
discovery based on UDP multicast. This is a zero-configuration
backend designed to get you going with Cloud Haskell quickly
without imposing any structure on your application.
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
Category: Control
extra-doc-files: ChangeLog
source-repository head
Type: git
Location: https://github.com/haskell-distributed/distributed-process
SubDir: packages/distributed-process-simplelocalnet
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,
bytestring >= 0.10 && < 0.13,
exceptions >= 0.10 && <0.11,
network >= 3.0 && < 3.3,
network-multicast >= 0.1.1 && < 0.4,
data-accessor >= 0.2 && < 0.3,
binary >= 0.8 && < 0.9,
containers >= 0.6 && < 0.9,
network-transport >= 0.5 && < 0.6,
network-transport-tcp >= 0.4 && < 0.9,
distributed-process >= 0.5.0 && < 0.8
Exposed-modules: Control.Distributed.Process.Backend.SimpleLocalnet,
Control.Distributed.Process.Backend.SimpleLocalnet.Internal.Multicast
Default-Language: Haskell2010
HS-Source-Dirs: src
Test-Suite SimpleLocalNet-TestSuite
import: warnings
Type: exitcode-stdio-1.0
Hs-Source-Dirs: tests
Main-Is: Main.hs
Default-Language: Haskell2010
ghc-options: -threaded -with-rtsopts=-N
Build-Depends: base
, distributed-process
, distributed-process-simplelocalnet
, tasty
, tasty-hunit