packages feed

msgpack-rpc-conduit-0.0.7: msgpack-rpc-conduit.cabal

name:                 msgpack-rpc-conduit
version:              0.0.7
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/hs-msgpack-rpc-conduit.git

library
  default-language: Haskell2010
  ghc-options:
      -Wall
      -fno-warn-unused-imports
  hs-source-dirs:
      src
  exposed-modules:
      Network.MessagePack.Client
      Network.MessagePack.Interface
      Network.MessagePack.Rpc
      Network.MessagePack.Server
      Network.MessagePack.Types
  other-modules:
      Network.MessagePack.Capabilities
      Network.MessagePack.Client.Basic
      Network.MessagePack.Client.Internal
      Network.MessagePack.Protocol
      Network.MessagePack.Server.Basic
      Network.MessagePack.Types.Client
      Network.MessagePack.Types.Error
      Network.MessagePack.Types.Result
      Network.MessagePack.Types.Server
      Network.MessagePack.Types.Spec
  build-depends:
      base < 5
    , binary
    , binary-conduit
    , bytestring
    , conduit
    , conduit-extra
    , data-default-class
    , exceptions
    , monad-control
    , monad-validate
    , msgpack-binary            >= 0.0.11
    , msgpack-types             >= 0.2 && < 0.3
    , mtl
    , network                   < 4
    , text
    , unliftio-core

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