-- Initial stm-firehose.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: stm-firehose 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 license-file: LICENSE author: Simon Marechal maintainer: bartavelle@gmail.com -- copyright: category: Network build-type: Simple 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 -- other-modules: -- other-extensions: build-depends: base >=4.6 && <5 , stm >=2.4 && <2.5 , stm-chans >=3.0 && <3.1 , conduit >=1.2 && <1.3 , stm-conduit >=2.6 && <2.8 , transformers >=0.4 && <0.5 , wai >= 3.0 && < 3.1 , http-types == 0.8.* , blaze-builder == 0.4.* , warp >= 3.1 && < 3.2 , resourcet >= 1.1 , wai-conduit == 3.* -- hs-source-dirs: default-language: Haskell2010 Test-Suite test-stm hs-source-dirs: tests type: exitcode-stdio-1.0 ghc-options: -Wall -threaded -rtsopts build-depends: base,stm-firehose,hspec,stm,HUnit main-is: stmtest.hs default-language: Haskell2010