packages feed

amazonka-s3-streaming-0.2.0.4: amazonka-s3-streaming.cabal

name:                amazonka-s3-streaming
version:             0.2.0.4
synopsis:            Provides conduits to upload data to S3 using the Multipart API
description:         Provides a conduit based streaming interface and a concurrent interface to
                     uploading data to S3 using the Multipart API. Also provides method to upload
                     files or bytestrings of known size in parallel. Please see README.md.
homepage:            https://github.com/Axman6/amazonka-s3-streaming#readme
license:             BSD3
license-file:        LICENSE
author:              Alex Mason
maintainer:          Alex.Mason@data61.csiro.au
copyright:           Copyright (c) 2016 Commonwealth Scientific and Industrial Research Organisation (CSIRO)
category:            Network, AWS, Cloud, Distributed Computing
build-type:          Simple
extra-source-files:  README.md, Changelog.md
cabal-version:       >=1.10
tested-with:         GHC == 7.8.4, GHC == 7.10.2, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.*

library
  hs-source-dirs:      src
  exposed-modules:     Network.AWS.S3.StreamingUpload
  default-language:    Haskell2010
  build-depends:       base >= 4.6 && < 5
                       , amazonka         >= 1.3        && < 1.6
                       , amazonka-core    >= 1.3        && < 1.6
                       , amazonka-s3      >= 1.3        && < 1.6
                       , resourcet        >= 1.1.7.4    && < 1.2
                       , conduit          >= 1.2.6.6    && < 1.3
                       , bytestring       >= 0.10.8.0   && < 0.11
                       , mmorph           >= 1.0.6      && < 1.2
                       , lens             >= 4.13       && < 5.0
                       , mtl              >= 2.2.1      && < 2.3
                       , exceptions       >= 0.8.2.1    && < 0.9
                       , dlist            >= 0.8        && < 0.9
                       , lifted-async     >= 0.9        && < 0.10
                       , mmap             >= 0.5        && < 0.6
                       , deepseq          >= 1.2        && < 1.5
                       , http-client      >= 0.4        && < 0.6

  if impl(ghc < 7.11)
    build-depends:
      semigroups >= 0.12
      , transformers >=0.4
  if impl(ghc == 7.8.*)
    build-depends:
      foundation == 0.0.15
  
  -- -- ini 0.3.4 fails to build because it doesn't have <*
  -- if impl(ghc < 7.9)
  --   build-depends:
  --     ini >= 0.3.5
  
Flag s3upload-exe
  Description: Whether to build the s3upload executable for uploading files using this library.
  Default: False

source-repository head
  type:     git
  location: https://github.com/Axman6/amazonka-s3-streaming

executable s3upload
  main-is: Main.hs
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  default-language: Haskell2010
  buildable: False
  build-depends: base
                 , amazonka
                 , amazonka-core
                 , amazonka-s3
                 , amazonka-s3-streaming
                 , conduit-extra
                 , conduit
                 , bytestring
                 , text
  if flag(s3upload-exe)
    buildable: True