summaryrefslogtreecommitdiff
path: root/bencoding.cabal
diff options
context:
space:
mode:
authorSam T <sta.cs.vsu@gmail.com>2013-04-18 18:25:21 +0400
committerSam T <sta.cs.vsu@gmail.com>2013-04-18 18:25:21 +0400
commitcb53210b7aab9de765bf10111c2135ae6f39aad7 (patch)
treef4cc8934d4966ffd172d3d6ff5a1df312759d878 /bencoding.cabal
parent4ad395c437a7eb3d7b89b85f7b488dfcf45231bd (diff)
~ Fix broken dependency.
Diffstat (limited to 'bencoding.cabal')
-rw-r--r--bencoding.cabal8
1 files changed, 4 insertions, 4 deletions
diff --git a/bencoding.cabal b/bencoding.cabal
index 7631f14..ddb598d 100644
--- a/bencoding.cabal
+++ b/bencoding.cabal
@@ -25,7 +25,7 @@ library
25-- WARN package text is used only for instance declaration 25-- WARN package text is used only for instance declaration
26 build-depends: base == 4.5.* 26 build-depends: base == 4.5.*
27 , containers == 0.4.* 27 , containers == 0.4.*
28 , bytestring == 0.10.* 28 , bytestring >= 0.10.2
29 , attoparsec == 0.10.* 29 , attoparsec == 0.10.*
30 , text == 0.11.* 30 , text == 0.11.*
31 , ansi-wl-pprint 31 , ansi-wl-pprint
@@ -39,7 +39,7 @@ library
39executable pp 39executable pp
40 main-is: pp.hs 40 main-is: pp.hs
41 build-depends: base == 4.5.* 41 build-depends: base == 4.5.*
42 , bytestring == 0.10.* 42 , bytestring >= 0.10.2
43 , bencoding == 0.1.* 43 , bencoding == 0.1.*
44 44
45 hs-source-dirs: pp 45 hs-source-dirs: pp
@@ -53,7 +53,7 @@ test-suite properties
53 53
54 build-depends: base == 4.5.* 54 build-depends: base == 4.5.*
55 , containers == 0.4.* 55 , containers == 0.4.*
56 , bytestring == 0.10.* 56 , bytestring >= 0.10.2
57 , attoparsec == 0.10.* 57 , attoparsec == 0.10.*
58 , ansi-wl-pprint 58 , ansi-wl-pprint
59 59
@@ -72,7 +72,7 @@ benchmark bench-comparison
72 72
73 build-depends: base == 4.5.* 73 build-depends: base == 4.5.*
74 , attoparsec == 0.10.* 74 , attoparsec == 0.10.*
75 , bytestring == 0.10.* 75 , bytestring >= 0.10.2
76 76
77 , criterion 77 , criterion
78 , deepseq 78 , deepseq