packages feed

network-msgpack-rpc-0.0.2: network-msgpack-rpc.cabal

name:                 network-msgpack-rpc
version:              0.0.2
synopsis:             A MessagePack-RPC Implementation
homepage:             http://msgpack.org/
license:              BSD3
license-file:         LICENSE
author:               Hideyuki Tanaka
maintainer:           Iphigenia Df <iphydf@gmail.com>
copyright:            Copyright (c) 2009-2016, Hideyuki Tanaka
category:             Data
stability:            Experimental
cabal-version:        >= 1.10
build-type:           Simple
description:
  A MessagePack-RPC Implementation <http://msgpack.org/>
  .
  This is a fork of msgpack-haskell <https://github.com/msgpack/msgpack-haskell>,
  since the original author is unreachable. This fork incorporates a number of
  bugfixes and is actively being developed.

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

library
  default-language: Haskell2010
  ghc-options:
      -Wall
  hs-source-dirs:
      src
  exposed-modules:
      Network.MessagePack.Client
      Network.MessagePack.Server
  other-modules:
      Network.MessagePack.Capabilities
      Network.MessagePack.Client.Basic
      Network.MessagePack.Client.Internal
      Network.MessagePack.Protocol
      Network.MessagePack.Server.Basic
      Network.MessagePack.Types
  build-depends:
      base < 5
    , binary
    , binary-conduit
    , bytestring
    , conduit
    , conduit-extra
    , data-default-class
    , data-msgpack      >= 0.0.4
    , exceptions
    , monad-control
    , mtl
    , network
    , tagged

test-suite testsuite
  type: exitcode-stdio-1.0
  default-language: Haskell2010
  ghc-options:
      -Wall
  hs-source-dirs: test
  main-is: testsuite.hs
  build-depends:
      base < 5
    , async
    , bytestring
    , hspec
    , mtl
    , network
    , network-msgpack-rpc