You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 9, 2020. It is now read-only.
rustc_serialize is deprecated. Serde also allows for forwards and backwards compatibility via ignoring fields of new messages on old nodes, and creating default values for missing fields on new nodes.
Right now, we also use msgpack as the serialization format, but it appears that bincode is almost twice as fast. However, right now neither of them properly handles the forward/backwards compatibility as provided by serde. An issue has been opened for bincode here
The text was updated successfully, but these errors were encountered:
rustc_serialize is deprecated. Serde also allows for forwards and backwards compatibility via ignoring fields of new messages on old nodes, and creating default values for missing fields on new nodes.
This PR depends upon andrewjstone/rabble#19
Right now, we also use msgpack as the serialization format, but it appears that bincode is almost twice as fast. However, right now neither of them properly handles the forward/backwards compatibility as provided by serde. An issue has been opened for bincode here
The text was updated successfully, but these errors were encountered: