soafe 0.2.0

SOAP async HTTP client generator
Documentation
#[macro_use]
extern crate log;
extern crate proc_macro;
extern crate proc_macro2;
#[macro_use]
extern crate quote;

// reexport dependencies so they can be used from the generated code
// without requiring more imports
#[doc(hidden)]
pub mod internal {
    pub use chrono;
    pub use reqwest;
    pub use xmltree;
}

mod error;
pub mod generate;
pub mod http;
pub mod rpser;
pub mod wsdl;
pub use error::*;