-
I'm trying to convert a Schema to json. All the structs I've looked at are annotated with
However, there is no "serde" feature I can enable for the arrow crate. How do I enable this feature? Here is the error I'm getting:
I can see at that at one point there was no such cfg_attr, but looking through the history I can't find when or why this change was made. |
Beta Was this translation helpful? Give feedback.
Answered by
tustvold
Feb 27, 2023
Replies: 1 comment 2 replies
-
Arrow-schema has an optional If you add |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
Jefffrey
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Arrow-schema has an optional
serde
dependency - https://crates.io/crates/arrow-schema/34.0.0/dependenciesIf you add
features = ["serde"]
it should work