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 +9/−0
- stm-firehose.cabal +6/−4
+ README.md view
@@ -0,0 +1,9 @@+# stm-firehose++[](https://travis-ci.org/bartavelle/stm-firehose)+[](http://stackage.org/lts-3/package/stm-firehose)+[](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.*