xml-rpc-rs
xml-rpc-rs copied to clipboard
XML-RPC client library for Rust
We're currently using [xml-rs](https://github.com/netvl/xml-rs) to parse XML, which only supports UTF-8 (https://github.com/netvl/xml-rs/issues/10). To do this, either xml-rs needs to get support for other encodings or we have to switch to...
It should be possible, at least in some cases, to automatically (de-)serialize data from/to the XMLRPC format. This would be pretty cool to have. Investigate and prototype!
If a downstream crate wants to send a request and can't just use `call_url`, it might be handy if we reexport reqwest so they don't have to add the correct...
Currently, this crate forces the use of many allocations. It should be possible to make `Value` use `Cow` internally, as well as making `Request` store an `&'a [Value]` for the...