Merge: Remove the binary serialization service
authorJean Privat <jean@pryen.org>
Fri, 4 May 2018 19:36:56 +0000 (15:36 -0400)
committerJean Privat <jean@pryen.org>
Fri, 4 May 2018 19:36:56 +0000 (15:36 -0400)
This PR simply removes the binary::serialization module and its tests. Clients should use `msgpack` instead.

The binary serialization service was mostly a test of the serialization framework, it uses a custom format that is hard to debug, it does not subtype check the data before deserialization, and it has no more clients. In comparison, the msgpack serialization service uses a standardized format, it is debuggable and it is generally more space efficient.

Pull-Request: #2647


Trivial merge