-
Notifications
You must be signed in to change notification settings - Fork 0
/
hactors.cabal
38 lines (31 loc) · 1.72 KB
/
hactors.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
name: hactors
version: 0.0.3.1
synopsis: Practical actors for Haskell.
category: Concurrency
description:
This library is about to implement the actor model on top of the GHC's
concurrency. Actors works as VM's lightweight threads and messages works with
STM's channels. There is also a swarms implementation, that is, a groups of
processes sharing a message box, and a mapReduce combinator implemented using
swarms.
author: Heka Treep
maintainer: Heka Treep <zena.treep@gmail.com>
homepage: https://github.com/treep/hactors
bug-reports: https://github.com/treep/hactors/issues
license: MIT
license-file: LICENSE
stability: Experimental
cabal-version: >= 1.6
build-type: Simple
extra-source-files: Makefile
README.md
source-repository head
type: git
location: git://github.com/treep/hactors.git
library
ghc-options: -Wall -fno-warn-unused-do-bind
build-depends: base == 4.*, stm == 2.2.*
exposed-modules: Control.Concurrent.Actor
Control.Concurrent.Actor.Debug
Control.Concurrent.Actor.Tests
Control.Concurrent.Actor.Examples