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

Release notes: https://github.com/serde-rs/serde/releases/tag/v0.9.0 One thing we need to figure out is where to handle all the things that currently happen inside MapDeserializer::missing_field.

deserializing xml is great, but we also need serialization.

enhancement

not as easy as i expected. initial implementation at https://github.com/serde-rs/xml/blob/master/src/de/mod.rs#L302-343 messy with tuple like enums since arrays of those are totally weird in xml.

enhancement

Deserialization appears to fail for ignored tags that contain attributes. Here's a full example: ```toml [dependencies] serde = "0.8" serde_derive = "0.8" serde_xml = "0.9.1" ``` ```rust #![feature(proc_macro)] extern crate...

bug

To be honest I have no clue how to use this crate. And that is after both glancing at the code as well as trying an API model similar to...

```rust #[derive(Deserialize, Debug)] #[serde(rename="a")] pub struct A { b1: String } ``` compiled with `serde_codegen::expand(&src, &dst)`, and ```rust extern crate serde; extern crate serde_xml; include!(concat!(env!("OUT_DIR"), "/a.rs")); fn main() { //...

bug

Hello, me again! I'm attempting to deserialize a very large instance of an element, and it's resulting in the following error: ``` Finished debug [unoptimized + debuginfo] target(s) in 0.0...

I'm not totally sure why but when I try to deserialize an xml document i'm getting a unimplemented panic. I looked at your code on master and I don't see...

I'm not sure how to display `Option` in xml

Assume the following xml: ``` xml ``` How can I deserialize this in a fashion that preserves the order 'objA' 'objB' 'objA'? Deserializing into a `Vec` and a `Vec` would...