summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--network-bittorrent.cabal23
1 files changed, 18 insertions, 5 deletions
diff --git a/network-bittorrent.cabal b/network-bittorrent.cabal
index a926d82e..b99a6ebd 100644
--- a/network-bittorrent.cabal
+++ b/network-bittorrent.cabal
@@ -20,22 +20,35 @@ library
20 exposed-modules: Data.Torrent 20 exposed-modules: Data.Torrent
21 , Network.Torrent.THP 21 , Network.Torrent.THP
22 , Network.Torrent.PWP 22 , Network.Torrent.PWP
23 -- other-modules: 23 , Network.Torrent.PeerID
24 other-modules:
25 Network.Torrent.Handshake
26
24 build-depends: base == 4.5.* 27 build-depends: base == 4.5.*
28
29 -- Data packages
25 , bytestring >= 0.10.2.0 30 , bytestring >= 0.10.2.0
26 , containers >= 0.4.2.1 31 , containers >= 0.4.2.1
32 , text >= 0.11.2.3
27 33
34 -- encoding/serializations packages
28 , bencoding >= 0.1.0.0 35 , bencoding >= 0.1.0.0
36 , cereal >= 0.3.5.2
37 , urlencoded >= 0.4.0
38
39 -- time packages
40 , time >= 0.1.0.0
41 , old-locale >= 1.0.0.0
42
43 -- network related packages
29 , network >= 2.4.1.2 44 , network >= 2.4.1.2
30 , HTTP >= 4000.2.8 45 , HTTP >= 4000.2.8
31 , urlencoded >= 0.4.0
32 , cereal >= 0.3.5.2
33 , cryptohash 46 , cryptohash
34 , text >= 0.11.2.3 47
35 48
36 extensions: PatternGuards 49 extensions: PatternGuards
37 hs-source-dirs: src 50 hs-source-dirs: src
38 51-- ghc-options: -Wall
39 52
40 53
41executable client 54executable client