44 lines
1.3 KiB
Plaintext
44 lines
1.3 KiB
Plaintext
Name: conduit-resumablesink
|
|
Version: 0.1.1.0
|
|
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.1 && <1.2,
|
|
void >= 0.6 && < 0.7
|
|
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,
|
|
void,
|
|
resourcet,
|
|
transformers
|
|
ghc-options: -Wall
|
|
|
|
source-repository head
|
|
type: git
|
|
location: git://github.com/A1kmm/conduit-resumablesink.git
|