summaryrefslogtreecommitdiff
path: root/git-annex.cabal
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-10-28 14:17:30 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-10-28 14:17:30 -0400
commit9d7f923e5b3466a8fe3b34781483cb6a115fe5fc (patch)
tree3be9f8251d87838acc5d95a5b3fa6c2170535cd7 /git-annex.cabal
parent7d2548531ce895d909081b2eb3e594ebf4348ba7 (diff)
WIP multipart S3 upload
I'm a little stuck on getting the list of etags of the parts. This seems to require taking the md5 of each part locally, which doesn't get along well with lazily streaming in the part from the file. It would need to read the file twice, or lose laziness and buffer a whole part -- but parts might be quite large. This seems to be a problem with the API provided; S3 is supposed to return an etag, but that is not exposed. I have filed a bug: https://github.com/aristidb/aws/issues/141
Diffstat (limited to 'git-annex.cabal')
-rw-r--r--git-annex.cabal2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-annex.cabal b/git-annex.cabal
index 27050d30c..d746dbf59 100644
--- a/git-annex.cabal
+++ b/git-annex.cabal
@@ -159,7 +159,7 @@ Executable git-annex
if flag(PatchedAWS)
Build-Depends: aws (>= 0.9.2)
else
- Build-Depends: aws (>= 0.10.2)
+ Build-Depends: aws (>= 0.10.4)
CPP-Options: -DWITH_S3
if flag(WebDAV)