cschramm / xml-rpc-rs

XML-RPC for Rust

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

XML-RPC for Rust

crates.io docs.rs Build Status

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.

Usage

Start by adding an entry to your Cargo.toml:

[dependencies]
xmlrpc = "0.11.1"

Then import the crate into your Rust code:

extern crate xmlrpc;

See examples/client.rs for a small example which connects to a running Python XML-RPC server and calls a method. A more elaborate example that demonstrates how to implement a custom Transport to set a cookie header is provided in examples/custom-header.rs.

About

XML-RPC for Rust

License:Creative Commons Zero v1.0 Universal


Languages

Language:Rust 100.0%