packages feed

pipes-fluid-0.5.0.3: pipes-fluid.cabal

name:                pipes-fluid
version:             0.5.0.3
synopsis:            Reactively combines Producers so that a value is yielded as soon as possible.
description:         Please see README.md
homepage:            https://github.com/louispan/pipes-fluid#readme
license:             BSD3
license-file:        LICENSE
author:              Louis Pan
maintainer:          louis@pan.me
copyright:           2016 Louis Pan
category:            Control, Pipes, FRP
build-type:          Simple
cabal-version:       >=1.10
tested-with:         GHC == 7.10.3, GHC == 8.0.1

library
  hs-source-dirs:      src
  exposed-modules:     Pipes.Fluid
                       Pipes.Fluid.Merge
                       Pipes.Fluid.Impulse
                       Pipes.Fluid.ImpulseIO
                       Pipes.Fluid.Simultaneous
  build-depends:       base >= 4.7 && < 5
                     , constraints >= 0.4 && < 1
                     , lens >= 4 && < 5
                     , lifted-async >= 0.9 && < 1
                     , monad-control >= 1 && < 2
                     , pipes >= 4 && < 5
                     , semigroups >= 0.18 && <= 1
                     , stm >= 2.4 && < 3
                     , transformers >= 0.4 && < 6
                     , transformers-base >= 0.4 && < 1
                     , these >= 0.7 && < 1
  ghc-options:         -Wall
  default-language:    Haskell2010

test-suite pipes-fluid-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base >= 4.7 && < 5
                     , async >= 2 && < 3
                     , constraints >= 0.4 && < 1
                     , lens >= 4 && < 5
                     , hspec >= 2 && < 3
                     , lifted-async >= 0.8 && < 1
                     , mmorph >= 1 && < 2
                     , monad-control >= 1 && < 2
                     , mtl >= 2 && < 3
                     , pipes >= 4 && < 5
                     , pipes-concurrency >= 2 && < 3
                     , pipes-fluid
                     , pipes-misc >= 0.2.3.0 && < 1
                     , stm >= 2.4 && < 3
                     , transformers >= 0.4 && < 0.6
  ghc-options:         -Wall -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/louispan/pipes-fluid