name:                streaming-conduit
version:             0.1.2.2
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:          Ivan.Miljenovic@gmail.com
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.1.*
                     , 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