xmlrpc 0.6.0

An XML-RPC implementation for Rust
Documentation
1
2
3
4
5
6
7
8
9
# XML-RPC for Rust [![crates.io]https://img.shields.io/crates/v/xmlrpc.svg]https://crates.io/crates/xmlrpc

[![Build Status](https://travis-ci.org/jonas-schievink/xml-rpc-rs.svg?branch=master)](https://travis-ci.org/jonas-schievink/xml-rpc-rs)

[Documentation](https://docs.rs/xmlrpc/)

This crate provides a simple implementation of the [XML-RPC spec](http://xmlrpc.scripting.com/spec.html) in pure Rust using `xml-rs` and `hyper`.

See `examples/client.rs` for a small example which connects to a running Python XML-RPC server and calls a method.