1#![doc = include_str!("../README.md")]
2#![feature(try_find)]
3mod wsdl;
4
5pub use self::wsdl::{
6 WsBinding, WsDefinitions, WsError, WsMessage, WsMessagePart, WsPortOperation, WsPortType,
7 WsService, WsServicePort, WsTypes,
8};
9
10pub use roxmltree;