conduit-resumablesink/conduit-resumablesink.cabal

42 lines
1.3 KiB
Plaintext

Name: conduit-resumablesink
Version: 0.3
Synopsis: Allows conduit to resume sinks to feed multiple sources into it.
Description:
@conduit-resumablesink@ is a solution to the problem where you have a @conduit@
sink and you want to feed multiple sources into it as each source is exhausted.
This is essentially the opposite of the ResumableSource functionality supplied
with conduit.
License: BSD3
License-file: LICENSE
Author: Andrew Miller
Maintainer: andrew@amxl.com
Category: Data, Conduit
Build-type: Simple
Cabal-version: >=1.8
Homepage: http://github.com/A1kmm/conduit-resumablesink
Library
Hs-Source-Dirs: hssrc
Exposed-modules: Data.Conduit.ResumableSink
Build-depends:
base >= 4 && < 5,
conduit >= 1.2 && <2
ghc-options: -Wall
test-suite test
hs-source-dirs: test
main-is: main.hs
type: exitcode-stdio-1.0
build-depends: conduit,
conduit-resumablesink,
base,
hspec >= 1.3,
bytestring,
resourcet,
transformers
ghc-options: -Wall
source-repository head
type: git
location: git://github.com/A1kmm/conduit-resumablesink.git