diff options
author | Sam T <sta.cs.vsu@gmail.com> | 2013-04-05 01:56:34 +0400 |
---|---|---|
committer | Sam T <sta.cs.vsu@gmail.com> | 2013-04-05 01:56:34 +0400 |
commit | 776ee76f903768a65e928211ec0ad7c51d55a7a2 (patch) | |
tree | 8201d10e5a424a9ee0b5db4b2886b4e41025f3ec | |
parent | 9418e61f941b3654f9d1d0bb44805cc9edfad15d (diff) |
organize deps
-rw-r--r-- | network-bittorrent.cabal | 23 |
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 | ||
41 | executable client | 54 | executable client |