Dflow-0.0.1: Dflow.cabal
name: Dflow
version: 0.0.1
cabal-version: >= 1.10
build-type: Simple
license: BSD3
license-file: LICENSE.txt
copyright: © Paul Johnson 2012
author: Paul Johnson
maintainer: <paul@cogito.org.uk>
category: Reactivity
tested-with: GHC==7.0.4
synopsis: Processing Real-time event streams
data-files: README.txt
description: This library provides Real Time Stream Processors (RTSPs). An RTSP
transforms an input event stream into an output event stream. The output
events occur asynchronously with input events. RTSPs can be composed into
pipelines or executed in parallel and their outputs merged. A Real Time
Action (RTA) monad is provided for creating new primitive RTSPs.
stability: Experimental
library
hs-source-dirs: src
build-depends:
base >= 4 && < 5,
time >=1.1,
stm,
QuickCheck >= 2.4,
containers >= 0.4
exposed-modules: Control.RTSP
ghc-options: -fspec-constr-count=6
default-language: Haskell2010
test-suite ArbTest
type: exitcode-stdio-1.0
x-uses-tf: true
build-depends:
base >= 4,
HUnit >= 1.2 && < 2,
QuickCheck >= 2.4,
test-framework >= 0.4.1,
test-framework-quickcheck2
hs-source-dirs: src, test
ghc-options: -Wall -threaded -rtsopts=all -fspec-constr-count=10
-- Add "-fhpc" to the previous line to enable test coverage
default-language: Haskell2010
other-modules:
ArbTest,
Control.RTSP,
Main
main-is: Main.hs