name: msgpack-rpc version: 1.0.0 x-revision: 2 synopsis: A MessagePack-RPC Implementation description: A MessagePack-RPC Implementation homepage: http://msgpack.org/ license: BSD3 license-file: LICENSE author: Hideyuki Tanaka maintainer: Hideyuki Tanaka copyright: (c) 2010-2015, Hideyuki Tanaka category: Network stability: Experimental cabal-version: >=1.10 build-type: Simple source-repository head type: git location: git://github.com/msgpack/msgpack-haskell.git library default-language: Haskell2010 hs-source-dirs: src exposed-modules: Network.MessagePack.Server Network.MessagePack.Client build-depends: base >= 4.8 && < 4.13 , bytestring >= 0.10.4 && < 0.11 , text >= 1.2 && < 1.3 , network >= 2.6 && < 2.9 || >= 3.0 && < 3.1 , random >= 1.1 && < 1.2 , mtl >= 2.2 && < 2.3 , monad-control >= 1.0.0.0 && < 1.1 , conduit >= 1.2.3.1 && < 1.3 , conduit-extra >= 1.1.3.4 && < 1.3 , binary-conduit >= 1.2.3 && < 1.3 , exceptions >= 0.8 && < 0.11 , binary >= 0.7.1 && < 0.9 , msgpack >= 1.0.0 && < 1.1 test-suite msgpack-rpc-test default-language: Haskell2010 type: exitcode-stdio-1.0 hs-source-dirs: test main-is: test.hs build-depends: base , mtl , network , async >=2.0 , tasty >=0.10 , tasty-hunit >=0.9 , msgpack-rpc