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

Results 7 msgpack-go issues
Sort by recently updated
recently updated
newest added

Please include all the license and copyrights used for this repo

``` writer.Write(Bytes{RAW16, byte(length >> 16), byte(length)}) ``` ``` return (uint16(data[0])

Hi! Just added the fastest (at this moment) msgpack lib for golang.

As msgpack-go is no longer actively maintained mainly because of the original developer being a way too busy to pay attention (kudos to @methane and all the guys having worked...

I think that the method of using pack uint data method to pack float data is wrong, because the head sign of packing float is different from the head sign...

Packing a float value does not necessarily pack it as a float in the underlying protocol you try to optimize for space. This is not a bug, but it makes...

I am trying to use this and the RPC library and I think the code requires a major refactor to match standard encoding libraries in Go. I have made changes...