xml icon indicating copy to clipboard operation
xml copied to clipboard

No longer maintained

Results 13 xml issues
Sort by recently updated
recently updated
newest added

Deserializing from a structure that doesn't contain a field that is required will cause the unhelpful error message about a unit being required at line 0, col 0. While we...

For xml: ``` xml 5 6 ``` with Rust structures: ``` rust #[derive(Deserialize, Debug)] struct a { other: Vec, } #[derive(Deserialize, Debug)] struct other { d: i32, } ``` serde_xml...

code coverage is great. We should endeavor to get close to 100% through the unit tests @erickt I saw you added it to the main serde repos. Can you also...

tests