distributed-process-async 0.2.1 → 0.2.2
raw patch · 2 files changed
+7/−7 lines, 2 filesdep ~deepseqdep ~timenew-uploader
Dependency ranges changed: deepseq, time
Files
distributed-process-async.cabal view
@@ -1,5 +1,5 @@ name: distributed-process-async-version: 0.2.1+version: 0.2.2 cabal-version: >=1.8 build-type: Simple license: BSD3@@ -11,7 +11,7 @@ Stability: experimental Homepage: http://github.com/haskell-distributed/distributed-process-async Bug-Reports: http://github.com/haskell-distributed/distributed-process-async/issues-synopsis: Cloud Haskell Async API +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.@@ -34,16 +34,16 @@ distributed-process >= 0.5.3 && < 0.6, distributed-process-extras >= 0.2.0 && < 0.3, binary >= 0.6.3.0 && < 0.8,- deepseq >= 1.3.0.1 && < 1.4,+ deepseq >= 1.3.0.1 && < 1.5, mtl, containers >= 0.4 && < 0.6, hashable >= 1.2.0.5 && < 1.3, unordered-containers >= 0.2.3.0 && < 0.3, fingertree < 0.2, stm >= 2.4 && < 2.5,- time > 1.4 && < 1.5,+ time > 1.4 && < 1.6, transformers- if impl(ghc <= 7.5) + if impl(ghc <= 7.5) Build-Depends: template-haskell == 2.7.0.0, derive == 2.5.5, uniplate == 1.6.12,@@ -71,7 +71,7 @@ network-transport >= 0.4 && < 0.5, network-transport-tcp >= 0.4 && < 0.5, binary >= 0.6.3.0 && < 0.8,- deepseq >= 1.3.0.1 && < 1.4,+ deepseq >= 1.3.0.1 && < 1.5, HUnit >= 1.2 && < 2, stm >= 2.3 && < 2.5, test-framework >= 0.6 && < 0.9,
tests/TestAsync.hs view
@@ -260,7 +260,7 @@ testMain :: (NT.Transport -> IO [Test]) -> IO () testMain builder = do Right (transport, _) <- createTransportExposeInternals- "127.0.0.1" "10501" defaultTCPParameters+ "127.0.0.1" "0" defaultTCPParameters testData <- builder transport defaultMain testData