-
Notifications
You must be signed in to change notification settings - Fork 537
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rkyv Support #583
Comments
I have the implementation here but not sure if the team wants the rkyv support. |
We at Traverse Research would also like to use rkyv for Chrono datatypes, are there any plans to add rkyv support to Chrono? |
Agreed - we would love to see this in |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://rkyv.org/
A zero-copy deserialization framework for rust. A sort of alternative to serde that has higher performance. chrono should add a feature gate where specifying "rkyv" will enable support for rkyv.
Types that should be serialized/deserialized should be given
#[derive(Archive, Serialize, Deserialize, PartialEq, Debug)]
.The text was updated successfully, but these errors were encountered: