quick-xml icon indicating copy to clipboard operation
quick-xml copied to clipboard

Rust high performance xml reader and writer

Results 179 quick-xml issues
Sort by recently updated
recently updated
newest added

I have an issue similar to [this issue in serde-xml-rs](https://github.com/RReverser/serde-xml-rs/issues/83). I have the following implementation, where i use `flatten` and `rename="$value"` on fields in the same struct: ```rust use serde::Deserialize;...

bug
serde

Hello, I have the code below; when it runs, it results in the following output: ```xml seralized: ``` I would like to print it in a prettyfied way, i.e. with...

enhancement
help wanted
serde

Currently, the deserializer doesn't recognize a primitive unit variant (i.e. one that uses the mechanism introduced in #304) correctly. Consider the following example (simplified from the unit tests): ```rust enum...

bug
serde

My apologies if this is an inappropriate place to raise this issue. I have the following structure that I am trying to serialize: ```rust use serde::Serialize; /// `Description` field for...

enhancement
help wanted
serde

I'm trying to deserialize an XML document with the following structure, where inside the `Id` tag, there can be a choice of two elements. ```xml Id ``` I'm trying to...

serde

Attributes were being created as child elements. This works correctly if the simple types that should be attributes are kept at the beginning of the struct and the more complex...

serde

This PR fixes issues with nested struct and enum serialization, where the struct name will be serialized multiple times, or enum name will serialized. Unit variant enums are supported as...

bug
serde

XML 1.0 disallows most kinds of control characters. XML 1.1 allows some control characters, but only when they've been encoded as numeric character references. There should probably be some way...

enhancement
help wanted

I'd like to make a proposal, just so I don't go implement it without having consensus on it being fine. Since `'a` is kinda the default generic lifetime name, it's...

I have been trying out the new alpha version and I think I stumbled upon a kinda-bug. Somehow something that should be possible is not, I think because of the...