This crate provides a simple implementation of the XML-RPC specification in stable Rust using xml-rs
and reqwest
.
Please refer to the changelog to see what changed in the last releases.
Start by adding an entry to your Cargo.toml
:
toml
[dependencies]
xmlrpc = "0.11.0"
Then import the crate into your Rust code:
rust
extern crate xmlrpc;
See examples/client.rs
for a small example which connects to a running Python XML-RPC server and calls a method.