packages feed

rpc-0.0.1: rpc.cabal

name:                rpc
version:             0.0.1
synopsis:            type safe rpcs provided as basic IO actions
description:         Given an address of a server sharing a set of functions,
                     this rpc library generates functions of the same name for
                     a client, preformed within the IO monad.  Calling
                     these results in the original function being executed
                     server side.  The pseudo-functions generated maintain
                     their original server side type (except for the added IO).
category:            Network
license:             BSD3
license-file:        LICENSE
author:              Sam Anklesaria
maintainer:          amsay@amsay.net
build-type:          Simple
build-depends:       base >= 3 && < 5, network-fancy < 1, cereal < 1, th-lift < 1, derive < 3, bytestring < 1, template-haskell < 3, containers < 1
exposed-modules:     Data.Serialize.Send, Network.RPC.Client, Network.RPC.Server
other-modules:       Network.RPC.Types