Skip to content

Commit 0f03091

Browse files
committed
depend on binary-0.6 instead of 0.5
1 parent 928ee55 commit 0f03091

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

distributed-process-azure/distributed-process-azure.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Executable cloud-haskell-azure-ping
6868
distributed-process >= 0.3.2 && < 0.5,
6969
transformers >= 0.3 && < 0.4,
7070
bytestring >= 0.9 && < 0.11,
71-
binary >= 0.5 && < 0.6,
71+
binary >= 0.6 && < 0.7,
7272
mtl,
7373
libssh2
7474
else
@@ -83,7 +83,7 @@ Executable cloud-haskell-azure-fib
8383
distributed-process >= 0.3.2 && < 0.5,
8484
transformers >= 0.3 && < 0.4,
8585
bytestring >= 0.9 && < 0.11,
86-
binary >= 0.5 && < 0.6,
86+
binary >= 0.6 && < 0.7,
8787
binary-generic >= 0.2 && < 0.3,
8888
rank1dynamic >= 0.1 && < 0.2,
8989
distributed-static >= 0.2 && < 0.3,

distributed-process-demos/distributed-process-demos.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ executable distributed-process-simplelocalnet-mapreduce
141141
distributed-static >= 0.2.0 && < 0.3,
142142
containers >= 0.4 && < 0.6,
143143
bytestring >= 0.9 && < 0.11,
144-
binary >= 0.5 && < 0.6,
144+
binary >= 0.6 && < 0.7,
145145
array >= 0.4 && < 0.5,
146146
random >= 1.0 && < 1.1
147147
extensions: BangPatterns, CPP, TemplateHaskell, ScopedTypeVariables

distributed-process-simplelocalnet/distributed-process-simplelocalnet.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Library
3333
network >= 2.3 && < 2.5,
3434
network-multicast >= 0.0 && < 0.1,
3535
data-accessor >= 0.2 && < 0.3,
36-
binary >= 0.5 && < 0.6,
36+
binary >= 0.6 && < 0.7,
3737
containers >= 0.4 && < 0.6,
3838
transformers >= 0.2 && < 0.4,
3939
network-transport >= 0.3 && < 0.4,
@@ -55,7 +55,7 @@ Executable TestSimpleLocalnet
5555
network >= 2.3 && < 2.5,
5656
network-multicast >= 0.0 && < 0.1,
5757
data-accessor >= 0.2 && < 0.3,
58-
binary >= 0.5 && < 0.6,
58+
binary >= 0.6 && < 0.7,
5959
containers >= 0.4 && < 0.6,
6060
transformers >= 0.2 && < 0.4,
6161
network-transport >= 0.3 && < 0.4,

distributed-process/distributed-process.cabal

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ flag benchmarks
3939

4040
Library
4141
Build-Depends: base >= 4.4 && < 5,
42-
binary >= 0.5 && < 0.6,
42+
binary >= 0.6 && < 0.7,
4343
network-transport >= 0.3 && < 0.4,
4444
stm >= 2.3 && < 2.5,
4545
transformers >= 0.2 && < 0.4,
@@ -93,7 +93,7 @@ Test-Suite TestCH
9393
distributed-process,
9494
network-transport >= 0.3 && < 0.4,
9595
network-transport-tcp >= 0.3 && < 0.4,
96-
binary >= 0.5 && < 0.6,
96+
binary >= 0.6 && < 0.7,
9797
network >= 2.3 && < 2.5
9898
Other-modules: TestAuxiliary
9999
Extensions: CPP,
@@ -127,7 +127,7 @@ Executable distributed-process-throughput
127127
distributed-process,
128128
network-transport-tcp >= 0.3 && < 0.4,
129129
bytestring >= 0.9 && < 0.11,
130-
binary >= 0.5 && < 0.6
130+
binary >= 0.6 && < 0.7
131131
else
132132
buildable: False
133133
Main-Is: benchmarks/Throughput.hs
@@ -140,7 +140,7 @@ Executable distributed-process-latency
140140
distributed-process,
141141
network-transport-tcp >= 0.3 && < 0.4,
142142
bytestring >= 0.9 && < 0.11,
143-
binary >= 0.5 && < 0.6
143+
binary >= 0.6 && < 0.7
144144
else
145145
buildable: False
146146
Main-Is: benchmarks/Latency.hs
@@ -153,7 +153,7 @@ Executable distributed-process-channels
153153
distributed-process,
154154
network-transport-tcp >= 0.3 && < 0.4,
155155
bytestring >= 0.9 && < 0.11,
156-
binary >= 0.5 && < 0.6
156+
binary >= 0.6 && < 0.7
157157
else
158158
buildable: False
159159
Main-Is: benchmarks/Channels.hs
@@ -166,7 +166,7 @@ Executable distributed-process-spawns
166166
distributed-process,
167167
network-transport-tcp >= 0.3 && < 0.4,
168168
bytestring >= 0.9 && < 0.11,
169-
binary >= 0.5 && < 0.6
169+
binary >= 0.6 && < 0.7
170170
else
171171
buildable: False
172172
Main-Is: benchmarks/Spawns.hs

distributed-static/distributed-static.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Library
3030
rank1dynamic >= 0.1 && < 0.2,
3131
containers >= 0.4 && < 0.6,
3232
bytestring >= 0.9 && < 0.11,
33-
binary >= 0.5 && < 0.6
33+
binary >= 0.6 && < 0.7
3434
HS-Source-Dirs: src
3535
Extensions: DeriveDataTypeable,
3636
ScopedTypeVariables

network-transport/network-transport.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Source-Repository head
6565

6666
Library
6767
Build-Depends: base >= 4.3 && < 5,
68-
binary >= 0.5 && < 0.6,
68+
binary >= 0.6 && < 0.7,
6969
bytestring >= 0.9 && < 0.11,
7070
transformers >= 0.2 && < 0.4
7171
Exposed-Modules: Network.Transport,

rank1dynamic/rank1dynamic.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Library
1919
Data.Rank1Typeable
2020
Build-Depends: base >= 4.4 && < 4.7,
2121
ghc-prim >= 0.2 && < 0.4,
22-
binary >= 0.5 && < 0.6
22+
binary >= 0.6 && < 0.7
2323
HS-Source-Dirs: src
2424
GHC-Options: -Wall
2525
Extensions: EmptyDataDecls,

0 commit comments

Comments
 (0)