xml_rpc/
lib.rs

1#![recursion_limit = "1024"]
2
3extern crate base64;
4#[macro_use]
5extern crate error_chain;
6#[macro_use]
7extern crate hyper;
8#[macro_use]
9extern crate lazy_static;
10extern crate regex;
11#[macro_use]
12extern crate serde;
13pub extern crate rouille;
14#[cfg(test)]
15extern crate serde_bytes;
16extern crate serde_xml_rs;
17extern crate xml;
18
19pub mod client;
20pub mod error;
21pub mod server;
22mod xmlfmt;
23
24pub use client::{call, call_value, Client};
25pub use hyper::Url;
26pub use server::Server;
27pub use xmlfmt::{from_params, into_params, Call, Fault, Params, Response, Value};