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

Serializing struct with vector fails with: ```thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: UnsupportedOperation { operation: "serialize_seq" }```. I see that unit tests contain vectors so it...

Hi, I'm having trouble deserializing following XML ``` created Johny description Something was created ``` I would expect using [adjacently tagged](https://serde.rs/enum-representations.html#adjacently-tagged) enums would work, but I get error. ``called `Result::unwrap()`...

Hi!, I have a xml file with a structure like this ```xml ``` I'd like to change the value of "Prop2" to something else and then write to another file...

Code: ``` use serde; use serde::{Deserialize, Serialize}; use serde_xml_rs::{from_str, to_string}; #[derive(Debug, Serialize, Deserialize, PartialEq)] struct Item { name: String, source: String, } fn main() { let src = r#"Store"#; let...

I'm very new to Rust so if this is an obvious mistake I'm sorry in advance. I have the following struct ```Rust #[derive(Debug, Deserialize, PartialEq)] #[serde(rename = "Data", rename_all =...

It's quite common to want to set log level to debug especially when using an external logging service. When doing this serde_xml_rs produces an excessive number of debug logs.

I have the following struct I'm trying to serialize: ```rust use serde_xml_rs::{from_str, to_string}; use serde::{Serialize, Deserialize}; #[derive(Serialize, Deserialize, Debug)] #[serde(rename_all = "camelCase")] #[serde(rename = "request")] pub struct TokenRequest { pub...

Hi, how do you feel about adding the following features: - handling namespaces - (automatically escaping special character "" and "&" in strings) -->**ignore**, I just saw it should was...

Based on #142 and #129 this PR adds support to serialize maps and vectors. See description of #142 for details. This is just a rebased version of #142 which fixes...

I'm having trouble deserializing input like this: ```xml some other value kind a 32 ``` into a structure like this: ```rust #[serde(untagged)] enum AnEnum { KindA(String), KindB(i32), } struct MyStruct...

enhancement