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)
commit688e2f0dd8652d2a9a941f3f19be4ebef980cbe2
treea13dd2436df31e2935650d236a298fa3defe412f
parent22903a1274f2e946d2be60f32188d656597f9898
parenta5e98961205c653adc0a5fa18ea65af57397d9fb
Merge: Remove the binary serialization service

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