1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
#[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 gen;
pub mod http;
pub mod rpser;
pub mod wsdl;
pub use error::*;