zip-stream-0.2.2.0: zip-stream.cabal
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