serde-xml-rs icon indicating copy to clipboard operation
serde-xml-rs copied to clipboard

xml-rs based deserializer for Serde (compatible with 1.0+)

Results 105 serde-xml-rs issues
Sort by recently updated
recently updated
newest added

I am using this crate indirectly through the [tcx](https://crates.io/crates/tcx) crate, and when I try to `debug!` things in my application, I also get debug messages from this crate, which floods...

This test case results in ``Error(Custom("missing field `$value`")``: ```rust #[derive(Debug, Deserialize, PartialEq)] struct BC { b: String, c: String, } #[derive(Debug, Deserialize, PartialEq)] struct D { d: String, } #[derive(Debug,...

It would be great to have a changelog in the repo and/or release notes on the GitHub releases page. It would help users know the context of a release and...

This is needed for serde-transcode to work properly when encoding an arbitrary serde-deserializable format into xml using your crate. Serde formats are supposed to support that in any shape or...

Updated to allow deserializing directly to a Vec, without need to define an intermediate struct. This does not break current functionality, so you can still use intermediate struct if you...

Hi there, I'm hoping to get some feedback with respect to the issue: https://github.com/RReverser/serde-xml-rs/issues/92. Also, I apologize for the noise due to rustfmt.

Hi all. I started working on a serializer a while back, and didn't realize that a different version had been submitted in the meantime. Unfortunately mine behaves a bit differently,...

Introduce the "$comment" variable to deserialize XML comments. TODO: support for Vec is currently not working (it seems to swallow the remaining elements/attributes). TODO: serialize side (it's only faire since...

I am trying to parse xml like this: ```rust #[derive(Debug, Deserialize, PartialEq, Serialize)] #[serde(rename = "group")] pub struct Group { pub name: String, #[serde(rename = "type")] pub _type: String, pub...

Hi! I am trying to deserialise xml from [Texturepacker](https://www.codeandweb.com/texturepacker) - It's in rather unusual format that uses some markup like this: ```XML name value name2 value2 ``` I read the...