xmpp-client 0.1.2

A work in progress xmpp lib
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate log;
extern crate xmpp_proto;
extern crate base64;
#[macro_use]extern crate futures;
extern crate tokio_core;
extern crate native_tls;
extern crate tokio_tls;
extern crate tokio_io;
extern crate bytes;

mod client;

pub use client::Client;