summaryrefslogtreecommitdiff
path: root/bencoding.cabal
diff options
context:
space:
mode:
authorSam T <pxqr.sta@gmail.com>2013-05-19 17:40:47 +0400
committerSam T <pxqr.sta@gmail.com>2013-05-19 17:40:47 +0400
commitfbbd7adbb7e8672adb2ebef01342b15ab2835d8b (patch)
tree146994015c474f36ae76bbc6a585bf15c1881b16 /bencoding.cabal
parentf5606c5f2ff7009ab457c8404e91d74baa9a406b (diff)
~ Relax dependencies.
Diffstat (limited to 'bencoding.cabal')
-rw-r--r--bencoding.cabal38
1 files changed, 19 insertions, 19 deletions
diff --git a/bencoding.cabal b/bencoding.cabal
index 05874a5..9c57b6a 100644
--- a/bencoding.cabal
+++ b/bencoding.cabal
@@ -23,11 +23,11 @@ library
23 other-modules: 23 other-modules:
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.*
27 , containers == 0.4.* 27 , containers >= 0.4.*
28 , bytestring >= 0.10.2 28 , bytestring >= 0.10.2.0
29 , attoparsec == 0.10.* 29 , attoparsec >= 0.10.*
30 , text == 0.11.* 30 , text >= 0.11.*
31 , ansi-wl-pprint 31 , ansi-wl-pprint
32 32
33 hs-source-dirs: src 33 hs-source-dirs: src
@@ -38,9 +38,9 @@ library
38 38
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.*
42 , bytestring >= 0.10.2 42 , bytestring
43 , bencoding == 0.1.* 43 , bencoding
44 44
45 hs-source-dirs: pp 45 hs-source-dirs: pp
46 ghc-options: -Wall -O2 46 ghc-options: -Wall -O2
@@ -51,16 +51,16 @@ test-suite properties
51 main-is: properties.hs 51 main-is: properties.hs
52 hs-source-dirs: tests 52 hs-source-dirs: tests
53 53
54 build-depends: base == 4.5.* 54 build-depends: base == 4.*
55 , containers == 0.4.* 55 , containers >= 0.4.*
56 , bytestring >= 0.10.2 56 , bytestring >= 0.10.2.0
57 , attoparsec == 0.10.* 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.* 63 , bencoding
64 64
65 ghc-options: -Wall -fno-warn-orphans 65 ghc-options: -Wall -fno-warn-orphans
66 66
@@ -70,15 +70,15 @@ benchmark bench-comparison
70 main-is: Main.hs 70 main-is: Main.hs
71 hs-source-dirs: bench 71 hs-source-dirs: bench
72 72
73 build-depends: base == 4.5.* 73 build-depends: base == 4.*
74 , attoparsec == 0.10.* 74 , attoparsec >= 0.10.*
75 , bytestring >= 0.10.2 75 , bytestring >= 0.10.2.0
76 76
77 , criterion 77 , criterion
78 , deepseq 78 , deepseq
79 79
80 , bencoding == 0.1.* 80 , bencoding
81 , bencode == 0.5 81 , bencode >= 0.5
82 , AttoBencode == 0.2.* 82 , AttoBencode >= 0.2.*
83 83
84 ghc-options: -O2 -Wall -fno-warn-orphans 84 ghc-options: -O2 -Wall -fno-warn-orphans