summaryrefslogtreecommitdiff
path: root/bencoding.cabal
diff options
context:
space:
mode:
authorSam T <sta.cs.vsu@gmail.com>2013-04-18 17:55:18 +0400
committerSam T <sta.cs.vsu@gmail.com>2013-04-18 17:55:18 +0400
commit28d1da1a2d05af8835ef5084478e0af8043b0075 (patch)
tree9467952e2f497b303a40eaf79de9c12c6268627c /bencoding.cabal
parent57e5a4f53bc779f373712dd3353c7e9edecd3c32 (diff)
~ Fix dependencies to avoid ambiguious deps.
Diffstat (limited to 'bencoding.cabal')
-rw-r--r--bencoding.cabal30
1 files changed, 15 insertions, 15 deletions
diff --git a/bencoding.cabal b/bencoding.cabal
index b01d188..7631f14 100644
--- a/bencoding.cabal
+++ b/bencoding.cabal
@@ -24,10 +24,10 @@ library
24 24
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.0 27 , containers == 0.4.*
28 , bytestring >= 0.10.2.0 28 , bytestring == 0.10.*
29 , attoparsec >= 0.10.4.0 29 , attoparsec == 0.10.*
30 , text >= 0.11.2.3 30 , text == 0.11.*
31 , ansi-wl-pprint 31 , ansi-wl-pprint
32 32
33 hs-source-dirs: src 33 hs-source-dirs: src
@@ -39,8 +39,8 @@ 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.2.0 42 , bytestring == 0.10.*
43 , bencoding >= 0.1.0.0 43 , bencoding == 0.1.*
44 44
45 hs-source-dirs: pp 45 hs-source-dirs: pp
46 ghc-options: -Wall -O2 46 ghc-options: -Wall -O2
@@ -52,15 +52,15 @@ test-suite properties
52 hs-source-dirs: tests 52 hs-source-dirs: tests
53 53
54 build-depends: base == 4.5.* 54 build-depends: base == 4.5.*
55 , containers >= 0.4.0 55 , containers == 0.4.*
56 , bytestring >= 0.10.2.0 56 , bytestring == 0.10.*
57 , attoparsec >= 0.10.4.0 57 , attoparsec == 0.10.*
58 , ansi-wl-pprint 58 , ansi-wl-pprint
59 59
60 , test-framework 60 , test-framework
61 , test-framework-quickcheck2 61 , test-framework-quickcheck2
62 , QuickCheck 62 , QuickCheck
63 , bencoding >= 0.1.0.0 63 , bencoding == 0.1.*
64 64
65 ghc-options: -Wall -fno-warn-orphans 65 ghc-options: -Wall -fno-warn-orphans
66 66
@@ -71,14 +71,14 @@ benchmark bench-comparison
71 hs-source-dirs: bench 71 hs-source-dirs: bench
72 72
73 build-depends: base == 4.5.* 73 build-depends: base == 4.5.*
74 , attoparsec >= 0.10.4.0 74 , attoparsec == 0.10.*
75 , bytestring >= 0.10.2.0 75 , bytestring == 0.10.*
76 76
77 , criterion 77 , criterion
78 , deepseq 78 , deepseq
79 79
80 , bencoding >= 0.1.0.0 80 , bencoding == 0.1.*
81 , bencode >= 0.5 81 , bencode == 0.5
82 , AttoBencode >= 0.2.0.1 82 , AttoBencode == 0.2.*
83 83
84 ghc-options: -O2 -Wall -fno-warn-orphans 84 ghc-options: -O2 -Wall -fno-warn-orphans