packages feed

streaming-concurrency-0.1.0.0: streaming-concurrency.cabal

name:                streaming-concurrency
version:             0.1.0.0
synopsis:            Concurrency support for the streaming ecosystem
description:
  The primary purpose for this library is to be able to merge multiple
  @Stream@s together.  However, it is possible to build higher
  abstractions on top of this to be able to also feed multiple
  streams.
license:             MIT
license-file:        LICENSE
author:              Ivan Lazar Miljenovic
maintainer:          Ivan.Miljenovic@gmail.com
copyright:           Ivan Lazar Miljenovic
category:            Data
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.1.*

source-repository head
  type:     git
  location: https://github.com/ivan-m/streaming-concurrency.git

library
  exposed-modules:     Streaming.Concurrent
                     , Streaming.Concurrent.Lifted
  build-depends:       base ==4.*
                     , bytestring
                     , exceptions >= 0.6 && < 0.9
                     , lifted-async >= 0.9.1 && < 0.10
                     , monad-control == 1.*
                     , stm >= 2.4 && < 3
                     , streaming >= 0.1.4.0 && < 0.2
                     , streaming-bytestring >= 0.1.4.5 && < 0.2
                     , streaming-with == 0.1.*
                     , transformers-base
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite merging
  type:                exitcode-stdio-1.0
  main-is:             merging.hs
  build-depends:       streaming-concurrency
                     , base
                     , bytestring
                     , hspec == 2.4.*
                     , QuickCheck == 2.*
                     , quickcheck-instances
                     , streaming
                     , streaming-bytestring
  hs-source-dirs:      test
  default-language:    Haskell2010
  ghc-options:         -Wall