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 11
/
distributed-process-simplelocalnet.cabal
55 lines (52 loc) · 2.32 KB
/
distributed-process-simplelocalnet.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
Name: distributed-process-simplelocalnet
Version: 0.3.1
Cabal-Version: >=1.10
Build-Type: Simple
License: BSD3
License-File: LICENSE
Copyright: Well-Typed LLP
Author: Duncan Coutts, Nicolas Wu, Edsko de Vries
Maintainer: The Distributed Haskell team
Stability: experimental
Homepage: http://haskell-distributed.github.com
Bug-Reports: https://github.com/haskell-distributed/distributed-process-simplelocalnet/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==9.0.2 GHC==9.2.8 GHC==9.4.5 GHC==9.6.4 GHC==9.8.2 GHC==9.10.1
Category: Control
extra-source-files: ChangeLog
Source-Repository head
Type: git
Location: https://github.com/haskell-distributed/distributed-process-simplelocalnet
Library
Build-Depends: base >= 4.4 && < 5,
bytestring >= 0.9 && < 0.13,
exceptions >= 0.5 && <0.11,
network >= 3.0 && < 3.3,
network-multicast >= 0.1.1 && < 0.4,
data-accessor >= 0.2 && < 0.3,
binary >= 0.6.3 && < 0.9,
containers >= 0.4 && < 0.8,
transformers >= 0.2 && < 0.7,
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
ghc-options: -Wall
HS-Source-Dirs: src
Test-Suite SimpleLocalNet-TestSuite
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