cabal-version: 3.0
Name: distributed-process-simplelocalnet
Version: 0.3.2
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: http://haskell-distributed.github.com
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.5 GHC==9.6.4 GHC==9.8.2 GHC==9.10.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
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.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
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