-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmonad-task.cabal
37 lines (34 loc) · 1.27 KB
/
monad-task.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
name: monad-task
version: 0.2.0
homepage: http://github.com/ninegua/monad-task
author: Paul Liu
maintainer: Paul Liu <[email protected]>
stability: experimental
category: Control
cabal-version: >= 1.6
build-type: Simple
synopsis: A monad transformer that turns event processing into co-routine programming.
description:
Task monad transformer can help refactor event and callback
heavy programs into monads via co-routines. The idea is loosely
based on /Combining Events And Threads For Scalable Network Services/,
by Peng Li and Steve Zdancewic, in /PLDI/, 2007.
(<http://www.cis.upenn.edu/~stevez/papers/abstracts.html#LZ07>), but
with deterministic and co-operative lightweight threads, also known as
co-routines, so that the base monad can be anything ranging from IO
to state monads, or your favorite monad transformer stack.
license: BSD3
license-file: LICENSE
extra-source-files:
README.md
source-repository head
type: git
location: git://github.com/ninegua/monad-task.git
Library
exposed-modules:
Control.Monad.Task
Control.Monad.Task.Class
Control.Monad.Trans.Task
build-depends: base < 6, mtl == 2.*, transformers > 0.4 && < 0.6
extensions:
ghc-options: -Wall -fno-warn-unused-imports