-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstm-firehose.cabal
52 lines (46 loc) · 2.04 KB
/
stm-firehose.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
-- 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: [email protected]
-- 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