packages feed

msgpack-rpc-0.9.0: msgpack-rpc.cabal

name:                msgpack-rpc
version:             0.9.0
synopsis:            A MessagePack-RPC Implementation
description:         A MessagePack-RPC Implementation <http://msgpack.org/>
homepage:            http://msgpack.org/
license:             BSD3
license-file:        LICENSE
author:              Hideyuki Tanaka
maintainer:          Hideyuki Tanaka <tanaka.hideyuki@gmail.com>
copyright:           (c) 2010-2012, Hideyuki Tanaka
category:            Network
stability:	     Experimental
cabal-version:       >=1.8
build-type:          Simple

source-repository head
  type:              git
  location:          git://github.com/msgpack/msgpack-haskell.git

library
  build-depends:     base               >= 4.5 && < 4.7
                   , bytestring         >= 0.9
                   , text               == 0.11.*
                   , network            >= 2.2 && < 2.5
                   , random             == 1.0.*
                   , mtl                >= 2.1
                   , monad-control      >= 0.3
                   , conduit            >= 0.5
                   , network-conduit    >= 0.6
                   , attoparsec-conduit >= 0.5
                   , msgpack            == 0.7.*

  exposed-modules:   Network.MessagePackRpc.Server
                     Network.MessagePackRpc.Client

test-suite msgpack-rpc-test
  type:              exitcode-stdio-1.0
  hs-source-dirs:    dist
  main-is:           ../test.hs

  build-depends:     base
                   , mtl
                   , network
                   , async >= 2.0
                   , hspec >= 1.3
                   , msgpack-rpc