summaryrefslogtreecommitdiff
path: root/network-bittorrent.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'network-bittorrent.cabal')
-rw-r--r--network-bittorrent.cabal10
1 files changed, 9 insertions, 1 deletions
diff --git a/network-bittorrent.cabal b/network-bittorrent.cabal
index b99a6ebd..c8bcb955 100644
--- a/network-bittorrent.cabal
+++ b/network-bittorrent.cabal
@@ -18,11 +18,13 @@ source-repository head
18 18
19library 19library
20 exposed-modules: Data.Torrent 20 exposed-modules: Data.Torrent
21 , Network.Torrent
21 , Network.Torrent.THP 22 , Network.Torrent.THP
22 , Network.Torrent.PWP 23 , Network.Torrent.PWP
23 , Network.Torrent.PeerID 24 , Network.Torrent.PeerID
25 , Network.Torrent.Handshake
24 other-modules: 26 other-modules:
25 Network.Torrent.Handshake 27
26 28
27 build-depends: base == 4.5.* 29 build-depends: base == 4.5.*
28 30
@@ -55,9 +57,15 @@ executable client
55 main-is: client.hs 57 main-is: client.hs
56 build-depends: base == 4.5.* 58 build-depends: base == 4.5.*
57 , bytestring >= 0.10.2.0 59 , bytestring >= 0.10.2.0
60 , network >= 2.4.1.2
61 , text
62 , cereal
63 , mtl
64
58 , bencoding >= 0.1.0.0 65 , bencoding >= 0.1.0.0
59 , network-bittorrent >= 0.1.0.0 66 , network-bittorrent >= 0.1.0.0
60 67
68
61 hs-source-dirs: tests 69 hs-source-dirs: tests
62 ghc-options: -Wall -O2 70 ghc-options: -Wall -O2
63 71