Name: distributed-process-simplelocalnet
Version: 0.2.4
Cabal-Version: >=1.8
Build-Type: Simple
License: BSD3
License-File: LICENSE
Copyright: Well-Typed LLP
Author: Duncan Coutts, Nicolas Wu, Edsko de Vries
Maintainer: Facundo Domínguez <facundo.dominguez@tweag.io>
Stability: experimental
Homepage: http://haskell-distributed.github.com
Bug-Reports: https://cloud-haskell.atlassian.net/browse/DPSLN
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==7.2.2 GHC==7.4.1 GHC==7.4.2
Category: Control
extra-source-files: ChangeLog
Source-Repository head
Type: git
Location: https://github.com/haskell-distributed/distributed-process-simplelocalnet
Flag build-example
Default: False
Description: Build a simple example application
Library
Build-Depends: base >= 4.4 && < 5,
bytestring >= 0.9 && < 0.11,
network >= 2.3 && < 2.7,
network-multicast >= 0.1.1 && < 0.3,
data-accessor >= 0.2 && < 0.3,
binary >= 0.6.3 && < 0.9,
containers >= 0.4 && < 0.6,
transformers >= 0.2 && < 0.6,
network-transport >= 0.4.1.0 && < 0.6,
network-transport-tcp >= 0.4 && < 0.7,
distributed-process >= 0.5.0 && < 0.8
Exposed-modules: Control.Distributed.Process.Backend.SimpleLocalnet,
Control.Distributed.Process.Backend.SimpleLocalnet.Internal.Multicast
Extensions: RankNTypes,
DeriveDataTypeable,
CPP
ghc-options: -Wall
HS-Source-Dirs: src
Executable TestSimpleLocalnet
Main-Is: TestSimpleLocalnet.hs
Other-Modules:
Control.Distributed.Process.Backend.SimpleLocalnet
Control.Distributed.Process.Backend.SimpleLocalnet.Internal.Multicast
If flag(build-example)
Build-Depends: base >= 4.4 && < 5,
bytestring >= 0.9 && < 0.11,
network >= 2.3 && < 2.7,
network-multicast >= 0.0 && < 0.3,
data-accessor >= 0.2 && < 0.3,
binary >= 0.5 && < 0.9,
containers >= 0.4 && < 0.6,
transformers >= 0.2 && < 0.6,
network-transport >= 0.4.1.0 && < 0.6,
network-transport-tcp >= 0.4 && < 0.7,
distributed-process >= 0.5.0 && < 0.8
Else
Buildable: False
Extensions: RankNTypes,
DeriveDataTypeable,
CPP
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
HS-Source-Dirs: tests src