diff options
author | Sam T <pxqr.sta@gmail.com> | 2013-06-13 09:52:40 +0400 |
---|---|---|
committer | Sam T <pxqr.sta@gmail.com> | 2013-06-13 09:52:40 +0400 |
commit | b1413145f58be6c3d7e536574a19e1b6c333cd54 (patch) | |
tree | 2d2464533a4ec45d572d191c6439b84c73567a9c /bittorrent.cabal | |
parent | 38d8eb046cefce18a6689488994c05abf1223ffe (diff) |
~ Use bounded chan to avoid space leaks.
Diffstat (limited to 'bittorrent.cabal')
-rw-r--r-- | bittorrent.cabal | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/bittorrent.cabal b/bittorrent.cabal index 73e8bef2..c8f3d4ed 100644 --- a/bittorrent.cabal +++ b/bittorrent.cabal | |||
@@ -58,11 +58,19 @@ library | |||
58 | 58 | ||
59 | -- Control packages | 59 | -- Control packages |
60 | , mtl | 60 | , mtl |
61 | , resourcet | ||
61 | , lens | 62 | , lens |
62 | 63 | ||
63 | -- Concurrency packages | 64 | -- Concurrency packages |
65 | , monad-fork | ||
64 | , SafeSemaphore | 66 | , SafeSemaphore |
65 | , stm >= 2.4 | 67 | , BoundedChan >= 1.0.1.0 |
68 | , stm >= 2.4 | ||
69 | |||
70 | -- Conduits | ||
71 | , conduit == 1.* | ||
72 | , network-conduit == 1.* | ||
73 | , cereal-conduit >= 0.5 | ||
66 | 74 | ||
67 | -- Data packages | 75 | -- Data packages |
68 | , array >= 0.4 | 76 | , array >= 0.4 |
@@ -87,12 +95,6 @@ library | |||
87 | , HTTP >= 4000.2 | 95 | , HTTP >= 4000.2 |
88 | , krpc | 96 | , krpc |
89 | 97 | ||
90 | -- Conduits | ||
91 | , conduit == 1.* | ||
92 | , network-conduit == 1.* | ||
93 | , cereal-conduit >= 0.5 | ||
94 | , resourcet | ||
95 | |||
96 | -- Misc | 98 | -- Misc |
97 | , data-default | 99 | , data-default |
98 | , cryptohash | 100 | , cryptohash |