1[package]
2name = "tokio-xmpp"
3version = "0.1.1"
4authors = ["Astro <astro@spaceboyz.net>"]
5description = "Asynchronous XMPP for Rust with tokio"
6license = "MPL-2.0"
7homepage = "https://github.com/astro/tokio-xmpp"
8repository = "https://github.com/astro/tokio-xmpp"
9documentation = "https://docs.rs/tokio-xmpp"
10
11[dependencies]
12futures = "0.1"
13tokio-core = "0.1"
14tokio-io = "0.1"
15tokio-codec = "0.1"
16bytes = "0.4.9"
17xml5ever = "0.12"
18minidom = "0.9"
19# TODO: update to 0.2.0
20native-tls = "0.1"
21tokio-tls = "0.1"
22sasl = "0.4"
23jid = { version = "0.5", features = ["minidom"] }
24domain = "0.2"
25xmpp-parsers = "0.11"
26idna = "0.1"
27try_from = "0.2"
28quick-xml = "0.12"