split the jid module off into its own crate

This commit is contained in:
lumi 2017-02-27 15:41:00 +01:00
commit e94c582359
3 changed files with 4 additions and 312 deletions

View file

@ -2,11 +2,11 @@ extern crate xml;
extern crate openssl;
extern crate minidom;
extern crate base64;
pub extern crate jid;
pub mod ns;
pub mod transport;
pub mod error;
pub mod jid;
pub mod client;
pub mod plugin;
pub mod event;