1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
name: zip-stream
version: 0.2.2.0
synopsis: ZIP archive streaming using conduits
description: Process (extract and create) zip files as streams (e.g., over the network), accessing contained files without having to write the zip file to disk (unlike zip-conduit).
license: BSD3
license-file: LICENSE
author: Dylan Simon
maintainer: dylan@dylex.net
copyright: 2017
category: Codec, Conduit
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/dylex/zip-stream
library
exposed-modules:
Codec.Archive.Zip.Conduit.Types
Codec.Archive.Zip.Conduit.UnZip
Codec.Archive.Zip.Conduit.Zip
other-modules:
Codec.Archive.Zip.Conduit.Internal
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >= 4.9 && < 5,
binary >= 0.7.2,
binary-conduit,
bytestring,
conduit >= 1.3,
conduit-extra,
deepseq,
digest,
exceptions,
mtl,
primitive,
resourcet,
text,
time,
transformers-base,
zlib
executable unzip-stream
main-is: unzip.hs
hs-source-dirs: cmd
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >=4.8 && <5,
bytestring,
conduit,
conduit-extra,
directory,
filepath,
text,
time,
transformers,
zip-stream
executable zip-stream
main-is: zip.hs
hs-source-dirs: cmd
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >=4.8 && <5,
bytestring,
conduit,
conduit-extra,
directory,
filepath,
resourcet,
text,
time,
transformers,
zip-stream
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
default-language: Haskell2010
main-is: Main.hs
-- `-T` is needed for https://hackage.haskell.org/package/base-4.17.0.0/docs/GHC-Stats.html
ghc-options: -Wall -threaded -with-rtsopts=-T
build-depends:
base
, zip-stream
, bytestring
, conduit
, hspec
, text
, time
|