packages feed

stm-firehose 0.3.0 → 0.3.0.2

raw patch · 2 files changed

+15/−4 lines, 2 filesdep ~stm-conduit

Dependency ranges changed: stm-conduit

Files

+ README.md view
@@ -0,0 +1,9 @@+# stm-firehose++[![Build Status](https://travis-ci.org/bartavelle/stm-firehose.svg?branch=master)](https://travis-ci.org/bartavelle/stm-firehose)+[![stm-firehose on Stackage LTS 3](http://stackage.org/package/stm-firehose/badge/lts-3)](http://stackage.org/lts-3/package/stm-firehose)+[![stm-firehose on Stackage Nightly](http://stackage.org/package/stm-firehose/badge/nightly)](http://stackage.org/nightly/package/stm-firehose)++A fire hose is a component in a message passing system that let clients tap into the message flow. This module provides low level (built on STM channels) and high level (based on conduits) building blocks. It should work with a fixed amount of memory, and has non blocking write operations.++See the haddocs for detailled information.
stm-firehose.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                stm-firehose-version:             0.3.0+version:             0.3.0.2 synopsis:            Conduits and STM operations for fire hoses. description:         A fire hose is a component in a message passing system that let clients tap into the message flow. This module provides low level (built on STM channels) and high level (based on conduits) building blocks. It should work with a fixed amount of memory, and has non blocking write operations. license:             BSD3@@ -12,14 +12,16 @@ -- copyright:            category:            Network build-type:          Simple--- extra-source-files:  +extra-source-files:  README.md cabal-version:       >=1.10+homepage:            https://github.com/bartavelle/stm-firehose+bug-reports:         https://github.com/bartavelle/stm-firehose/issues + source-repository head   type: git   location: git://github.com/bartavelle/stm-firehose.git - library   exposed-modules:     Control.Concurrent.STM.Firehose, Data.Conduit.Network.Firehose   ghc-options:         -Wall@@ -29,7 +31,7 @@                      , stm >=2.4 && <2.5                      , stm-chans >=3.0 && <3.1                      , conduit >=1.2 && <1.3-                     , stm-conduit >=2.6 && <2.7+                     , stm-conduit >=2.6 && <2.8                      , transformers >=0.4 && <0.5                      , wai >= 3.0 && < 3.1                      , http-types == 0.8.*