Skip to content

Fix lower boundaries. #302

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 12, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 11 additions & 18 deletions distributed-process.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Description: This is an implementation of Cloud Haskell, as described in

You will probably also want to install a Cloud Haskell backend such
as distributed-process-simplelocalnet.
Tested-With: GHC==7.2.2 GHC==7.4.1 GHC==7.4.2 GHC==7.6.2
Tested-With: GHC==7.6.3 GHC==7.8.4 GHC==7.10.3 GHC==8.0.1
Category: Control
extra-source-files: ChangeLog

Expand All @@ -41,7 +41,7 @@ flag old-locale
default: False

Library
Build-Depends: base >= 4.4 && < 5,
Build-Depends: base >= 4.6 && < 5,
binary >= 0.6.3 && < 0.9,
hashable >= 1.2.0.5 && < 1.3,
network-transport >= 0.4.1.0 && < 0.5,
Expand All @@ -54,7 +54,9 @@ Library
distributed-static >= 0.2 && < 0.4,
rank1dynamic >= 0.1 && < 0.4,
syb >= 0.3 && < 0.7,
exceptions >= 0.5
exceptions >= 0.5,
containers >= 0.5 && < 0.6,
deepseq >= 1.3.0.1 && < 1.6
Exposed-modules: Control.Distributed.Process,
Control.Distributed.Process.Closure,
Control.Distributed.Process.Debug,
Expand Down Expand Up @@ -83,29 +85,20 @@ Library
Control.Distributed.Process.Management.Internal.Trace.Tracer
ghc-options: -Wall
HS-Source-Dirs: src
if impl(ghc <= 7.4.2)
Build-Depends: containers >= 0.4 && < 0.5,
deepseq == 1.3.0.0
else
Build-Depends: containers >= 0.4 && < 0.6,
deepseq >= 1.3.0.1 && < 1.6
if flag(old-locale)
Build-Depends: time < 1.5, old-locale >= 1.0 && <1.1
else
Build-Depends: time >= 1.5
if flag(th)
if impl(ghc <= 7.4.2)
Build-Depends: template-haskell >= 2.7 && < 2.8
else
Build-Depends: template-haskell >= 2.6 && < 2.12
Build-Depends: template-haskell >= 2.6 && < 2.12
Exposed-modules: Control.Distributed.Process.Internal.Closure.TH
CPP-Options: -DTemplateHaskellSupport

-- Tests are in distributed-process-test package, for convenience.

benchmark distributed-process-throughput
Type: exitcode-stdio-1.0
Build-Depends: base >= 4.4 && < 5,
Build-Depends: base >= 4.6 && < 5,
distributed-process,
network-transport-tcp >= 0.3 && < 0.6,
bytestring >= 0.9 && < 0.11,
Expand All @@ -115,7 +108,7 @@ benchmark distributed-process-throughput

benchmark distributed-process-latency
Type: exitcode-stdio-1.0
Build-Depends: base >= 4.4 && < 5,
Build-Depends: base >= 4.6 && < 5,
distributed-process,
network-transport-tcp >= 0.3 && < 0.6,
bytestring >= 0.9 && < 0.11,
Expand All @@ -125,7 +118,7 @@ benchmark distributed-process-latency

benchmark distributed-process-channels
Type: exitcode-stdio-1.0
Build-Depends: base >= 4.4 && < 5,
Build-Depends: base >= 4.6 && < 5,
distributed-process,
network-transport-tcp >= 0.3 && < 0.6,
bytestring >= 0.9 && < 0.11,
Expand All @@ -135,7 +128,7 @@ benchmark distributed-process-channels

benchmark distributed-process-spawns
Type: exitcode-stdio-1.0
Build-Depends: base >= 4.4 && < 5,
Build-Depends: base >= 4.6 && < 5,
distributed-process,
network-transport-tcp >= 0.3 && < 0.6,
bytestring >= 0.9 && < 0.11,
Expand All @@ -145,7 +138,7 @@ benchmark distributed-process-spawns

benchmark distributed-process-ring
Type: exitcode-stdio-1.0
Build-Depends: base >= 4.4 && < 5,
Build-Depends: base >= 4.6 && < 5,
distributed-process,
network-transport-tcp >= 0.3 && < 0.6,
bytestring >= 0.9 && < 0.11,
Expand Down