Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/belak/serde-xmlrpc
https://github.com/belak/serde-xmlrpc
rust serde xmlrpc
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/belak/serde-xmlrpc
- Owner: belak
- License: apache-2.0
- Created: 2020-01-03T19:35:36.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-03-09T09:51:38.000Z (10 months ago)
- Last Synced: 2024-10-19T05:50:55.759Z (3 months ago)
- Topics: rust, serde, xmlrpc
- Language: Rust
- Homepage:
- Size: 109 KB
- Stars: 10
- Watchers: 5
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# serde-xmlrpc
[![Build Status](https://github.com/belak/serde-xmlrpc/actions/workflows/rust.yml/badge.svg)](https://github.com/belak/serde-xmlrpc/actions/workflows/rust.yml)
[![Crates.io](https://img.shields.io/crates/v/serde_xmlrpc)](https://crates.io/crates/serde_xmlrpc)
[![Docs](https://img.shields.io/badge/docs-stable-blue)](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`
* 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`