xml-rpc-rs icon indicating copy to clipboard operation
xml-rpc-rs copied to clipboard

XML-RPC client library for Rust

Results 14 xml-rpc-rs issues
Sort by recently updated
recently updated
newest added

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...

enhancement
help wanted

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!

enhancement
help wanted

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...

enhancement
help wanted

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...

enhancement
help wanted