1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
Index: b/websockets.cabal
===================================================================
--- a/websockets.cabal
+++ b/websockets.cabal
@@ -1,5 +1,6 @@
Name: websockets
Version: 0.12.7.3
+x-revision: 2
Synopsis:
A sensible and clean way to write WebSocket-capable servers in Haskell.
@@ -91,10 +92,10 @@ Library
clock >= 0.8 && < 0.9,
containers >= 0.3 && < 0.7,
network >= 2.3 && < 3.2,
- random >= 1.0 && < 1.3,
+ random >= 1.0.1 && < 1.3,
SHA >= 1.5 && < 1.7,
streaming-commons >= 0.1 && < 0.3,
- text >= 0.10 && < 1.3,
+ text >= 0.10 && < 2.1,
entropy >= 0.2.1 && < 0.5
Test-suite websockets-tests
@@ -154,7 +155,7 @@ Test-suite websockets-tests
random >= 1.0 && < 1.3,
SHA >= 1.5 && < 1.7,
streaming-commons >= 0.1 && < 0.3,
- text >= 0.10 && < 1.3,
+ text >= 0.10 && < 2.1,
entropy >= 0.2.1 && < 0.5
Executable websockets-example
@@ -182,7 +183,7 @@ Executable websockets-example
network >= 2.3 && < 3.2,
random >= 1.0 && < 1.3,
SHA >= 1.5 && < 1.7,
- text >= 0.10 && < 1.3,
+ text >= 0.10 && < 2.1,
entropy >= 0.2.1 && < 0.5
Executable websockets-autobahn
@@ -213,7 +214,7 @@ Executable websockets-autobahn
network >= 2.3 && < 3.2,
random >= 1.0 && < 1.3,
SHA >= 1.5 && < 1.7,
- text >= 0.10 && < 1.3,
+ text >= 0.10 && < 2.1,
entropy >= 0.2.1 && < 0.5
Benchmark bench-mask
@@ -242,5 +243,5 @@ Benchmark bench-mask
network >= 2.3 && < 3.2,
random >= 1.0 && < 1.3,
SHA >= 1.5 && < 1.7,
- text >= 0.10 && < 1.3,
+ text >= 0.10 && < 2.1,
entropy >= 0.2.1 && < 0.5
|