Mingun

Results 662 comments of Mingun

Totally agree. Ok, then I'll merge it when follow-up PR will be ready

Right now I estimate this at least to 1 month and version with this split is more likely 0.39 or 0.40, but it's not certain 😉

Some intermediate results of investigation: 1. The official conformance testsuite has very low quality: many repeated tests, weak structure, has errors (file with "pass" in name marked as "invalid", but...

Currently that is impossible by design. Serde has no "comment" fields in their data model, so no any serializer is able to write comments from the data structs (of course,...

That documentation already [exists](https://docs.rs/quick-xml/latest/quick_xml/de/index.html#basics). It may be not so visible, I'm open on suggestions how to improve that.

It is located in `de` just because serde support is optional and we need to put that documentation somewhere under the feature flag. The main page does not say that...

> When I open [documentation](https://docs.rs/crate/quick-xml/latest), I see a quite small example for Serde and no other links whatsoever. This is readme file, the documentation starts [here](https://docs.rs/quick-xml/latest/quick_xml/). Usually readme is not...

Yes, it is possible, just use any Map, flatten to your struct. Keys captured with `@` in start is attributes: ```rust #[test] fn issue804() { #[derive(Default, Debug, Serialize, Deserialize, PartialEq)]...

Namespaces with serde does not officially supported yet, the progress is tracked in #218. Some limited support exists currently, but you are limited to use concrete prefixes, which definitely will...