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
The actual fix seems to be not to use serde. However, manually deserializing all the structs with quick-xml NsReader is quite a bit of effort. The idea would be to provide some kind of derive macro for this that supports more use cases for XML.
This is probably out of scope for this library right? Is there any known effort or recommendations for this? yaserde was a library that previously did this, but it is outdated and unmaintained.
Thanks!
The text was updated successfully, but these errors were encountered:
Hi! First of all, thank you for the work and the library!
I am encountering the expected issues that arise when using serde with quick-xml:
serde(flatten)
The actual fix seems to be not to use serde. However, manually deserializing all the structs with quick-xml
NsReader
is quite a bit of effort. The idea would be to provide some kind of derive macro for this that supports more use cases for XML.This is probably out of scope for this library right? Is there any known effort or recommendations for this?
yaserde
was a library that previously did this, but it is outdated and unmaintained.Thanks!
The text was updated successfully, but these errors were encountered: