packages feed

epass-0.2.1: epass.cabal

Name:          epass
Version:       0.2.1
Stability:     Alpha
Synopsis:      Baisc, Erlang-like message passing supporting sockets.
Description:   This package provides Erlang-like mailboxes for message passing.
               It also supports wrapping communication via e.g. sockets.
License:       BSD3
License-File:  LICENSE
Build-Type:    Simple
Author:        Andreas Baldeau
Maintainer:    Andreas Baldeau <andreas@baldeau.net>
Homepage:      http://github.com/baldo/epass
Bug-Reports:   http://github.com/baldo/epass/issues
Category:      Concurrency, Network
Tested-With:   GHC == 7.0.3
Cabal-Version: >= 1.10

Extra-Source-Files:
    Setup.hs
    CHANGES
    CONTRIB
    README
    demo/Message.hs
    demo/TestClient.hs
    demo/TestServer.hs

Source-Repository head
    Type:     git
    Location: git://github.com/baldo/epass.git

Library
    Default-Language:
        Haskell2010

    Build-Depends:
        base >= 4.3 && < 4.5,
        stm == 2.2.*,
        time == 1.1.* || == 1.2.*

    Ghc-Options:
        -Wall

    Hs-Source-Dirs:
        src

    Exposed-Modules:
        Control.Concurrent.Mailbox
        Control.Concurrent.Mailbox.Wrapper