//! An XML-RPC implementation in Rust.
//!
//! The `xmlrpc` crate provides a minimal implementation of the [XML-RPC specification].
//!
//! [XML-RPC specification]: http://xmlrpc.scripting.com/spec.html
extern crate base64;
extern crate iso8601;
extern crate xml;
pub use ;
pub use Request;
pub use Transport;
pub use ;
pub use http;