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
We use bincode for serializationand store bin files, then deserialize for data access.
We try to upgrade to bincode 2.0.0-rc.3, however from bincode 2.0.0+ needs Encode, Decode traits to be implemented.
the trait `Encode` is not implemented for `chrono::DateTime<Utc>`
Any suggestions or workarounds?
The text was updated successfully, but these errors were encountered:
It looks like bincode 2 might have some support for serde compatibility using Compat/BorrowCompat macros? I'm not convinced yet that we want to add a bincode 2 dependency in order to support their custom traits, especially while there isn't even a GA release.
But I recommend at least to start thinking about it as it is not anymore in beta and in rc.3 already, so I don't think there will be design level changes.
We use bincode for serializationand store bin files, then deserialize for data access.
We try to upgrade to bincode 2.0.0-rc.3, however from bincode 2.0.0+ needs Encode, Decode traits to be implemented.
Any suggestions or workarounds?
The text was updated successfully, but these errors were encountered: