-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstreaming-conduit.cabal
40 lines (37 loc) · 1.47 KB
/
streaming-conduit.cabal
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
name: streaming-conduit
version: 0.1.3.0
synopsis: Bidirectional support between the streaming and conduit libraries
description: Allow interoperability between the streaming and conduit data streaming ecosystems.
license: MIT
license-file: LICENSE
author: Ivan Lazar Miljenovic
maintainer: [email protected]
copyright: Ivan Lazar Miljenovic
category: Data, Streaming
build-type: Simple
extra-source-files: ChangeLog.md, README.md
cabal-version: >=1.10
tested-with: GHC == 7.10.2, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.3.*
source-repository head
type: git
location: https://github.com/haskell-streaming/streaming-conduit.git
library
exposed-modules: Streaming.Conduit
build-depends: base >=4.6 && <5
, bytestring
, conduit >= 1.2.11 && < 1.4
, streaming >= 0.1.3.0 && < 0.3
, streaming-bytestring >= 0.3 && < 0.4
, transformers >= 0.2
hs-source-dirs: src
default-language: Haskell2010
test-suite conversions
type: exitcode-stdio-1.0
main-is: conversions.hs
build-depends: streaming-conduit
, base
, conduit
, hspec == 2.4.*
, streaming
hs-source-dirs: test
default-language: Haskell2010