78 lines
1.7 KiB
Plaintext
78 lines
1.7 KiB
Plaintext
name: zip-stream
|
|
version: 0.2.0.1
|
|
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,
|
|
conduit-extra,
|
|
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
|