# serde-xmlrpc
[](https://github.com/belak/serde-xmlrpc/actions/workflows/rust.yml)
[](https://crates.io/crates/serde_xmlrpc)
[](https://docs.rs/serde_xmlrpc)
This library is meant to be a simple XMLRPC library with the minimal support
needed to build out applications using XMLRPC. No additional parsing, no
transports, etc.
## Breaking Changes
### v0.3.0
* `value_from_str` changed to return `T` where `T: serde::de::Deserialize<'a>`
* `value_to_string` changed to take `T` where `T: serde::ser::Serialize`
* `request_to_string` changed to take an `impl Iterator<Item = Value>`
* Structs changed to only allow string types as keys
* Drop DecodingError::UnexpectedError variant
* Impl `serde::Deserialize` directly on `Value` rather than through a wrapper type
### v0.2.0
* `response_from_str` changed to take an `impl Iterator<Item = Value>`