msgpack-haskell icon indicating copy to clipboard operation
msgpack-haskell copied to clipboard

Haskell implementation of MessagePack / msgpack.org[Haskell]

Results 22 msgpack-haskell issues
Sort by recently updated
recently updated
newest added
trafficstars

Hey, would you mind adding this library to Stackage? I'd like to add my library that depends on it to Stackage.

help wanted

I'm testing out msgpack-haskell, and my test application works fine - I can call a test method and see that the server receives the call correctly, and the client receives...

RPC
needs-review

- about Tuple: msgpack-java doesn't have serializer( org.msgpack.template.*Template class) for Tuple.java, so instances of generated Tuple class cannot be serialized. It would be better that TupleN.java is in msgpack-java. -...

IDL

there's no include in msgpack-idl even its in the msgpack-idl spec.

IDL

The executable is now called `mpidl`, it has different command-line syntax, and it cannot compile the provided example.

IDL

A Enum type defined in spec is always ignored when generating code.

IDL

I want to write a function that forwards to Client.call, but the type of Client.call contains an unnamable constraint (RpcType). I can still do it by using -fno-warn-missing-signatures, but I'd...

enhancement
RPC

I installed msgpack-idl 0.2.0 using cabal, and tested it using the example in README, however the command quit with code 1 and message: "mpidl: Prelude.undefined". I tested by outputting both...

IDL

I'm using C++ backend, there seems a minor glitch in generated hpp files, jubatus-msgpack-rpc will install header files into ``` /usr/local/include/jubatus/msgpack/rpc/ ``` but generated hpp file (i.e. classifier_client.hpp) uses ```...

Currently, `Integer` is not supported by `msgpack-haskell`. `Integer` is a arbitrary precision integer type for Haskell. `int` in python is also arbitrary. It would be nice to add support for...