diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2012-10-05 17:02:51 -0400 |
---|---|---|
committer | Ben Gamari <bgamari.foss@gmail.com> | 2012-10-05 17:02:51 -0400 |
commit | d8087d187dfa7b8b9d19085d05533ed203131bdc (patch) | |
tree | 9fc514370be2adee26c92cfe49c2324d423ed45e /git-annex.cabal | |
parent | 17a218922b5892fb925b17c0f8acaddd333519b0 (diff) |
TransferSlots: Use SafeSemaphore's MSemN instead of QSemN from base
As described in the documentation, QSemN is unsafe for a variety of
reasons.
Diffstat (limited to 'git-annex.cabal')
-rw-r--r-- | git-annex.cabal | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/git-annex.cabal b/git-annex.cabal index 518c63d8d..d760d4adb 100644 --- a/git-annex.cabal +++ b/git-annex.cabal @@ -1,5 +1,5 @@ Name: git-annex -Version: 3.20121001 +Version: 3.20121002 Cabal-Version: >= 1.8 License: GPL Maintainer: Joey Hess <joey@kitenet.net> @@ -49,7 +49,8 @@ Executable git-annex unix, containers, utf8-string, network, mtl, bytestring, old-locale, time, pcre-light, extensible-exceptions, dataenc, SHA, process, json, HTTP, base >= 4.5 && < 4.7, monad-control, transformers-base, lifted-base, - IfElse, text, QuickCheck >= 2.1, bloomfilter, edit-distance, process + IfElse, text, QuickCheck >= 2.1, bloomfilter, edit-distance, process, + SafeSemaphore -- Need to list these because they're generated from .hsc files. Other-Modules: Utility.Touch Utility.Mounts Include-Dirs: Utility |