Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/RReverser/serde-xml-rs
xml-rs based deserializer for Serde (compatible with 1.0+)
https://github.com/RReverser/serde-xml-rs
deserialization parsing rust serde xml
Last synced: 11 days ago
JSON representation
xml-rs based deserializer for Serde (compatible with 1.0+)
- Host: GitHub
- URL: https://github.com/RReverser/serde-xml-rs
- Owner: RReverser
- License: mit
- Created: 2017-02-16T16:54:58.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-07T23:12:27.000Z (11 months ago)
- Last Synced: 2024-10-28T20:45:23.812Z (15 days ago)
- Topics: deserialization, parsing, rust, serde, xml
- Language: Rust
- Homepage: https://crates.io/crates/serde-xml-rs
- Size: 134 KB
- Stars: 270
- Watchers: 8
- Forks: 90
- Open Issues: 97
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# serde-xml-rs
[![Build Status](https://travis-ci.org/RReverser/serde-xml-rs.svg?branch=master)](https://travis-ci.org/RReverser/serde-xml-rs)
`xml-rs` based deserializer for Serde (compatible with 1.0)
## Example usage
```rust
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#"BananaStore"#;
let should_be = Item {
name: "Banana".to_string(),
source: "Store".to_string(),
};let item: Item = from_str(src).unwrap();
assert_eq!(item, should_be);let reserialized_item = to_string(&item).unwrap();
assert_eq!(src, reserialized_item);
}
```