Closed IgnisDa closed 2 years ago
Awesome library! Thanks!
I think I have found a bug:
I have a struct which uses Yaml tags. Here is when I print the original yaml string:
Here is what happens when I de-serialize the same struct:
As you can see !ClassValidator tag is lost when de-serializing.
!ClassValidator
Basically it is not able to deserialize this value correctly:
Thanks! Indeed this was a bug. I've published a fix in serde_yaml 0.9.6.
Awesome library! Thanks!
I think I have found a bug:
I have a struct which uses Yaml tags. Here is when I print the original yaml string:
Here is what happens when I de-serialize the same struct:
As you can see
!ClassValidator
tag is lost when de-serializing.