1[package]
2name = "tokio-xmpp"
3version = "0.2.0"
4authors = ["Astro <astro@spaceboyz.net>", "Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>", "pep <pep+code@bouah.net>", "O01eg <o01eg@yandex.ru>"]
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"
10categories = ["asynchronous", "network-programming"]
11keywords = ["xmpp", "tokio"]
12edition = "2018"
13
14[dependencies]
15futures = "0.1"
16tokio = "0.1"
17tokio-io = "0.1"
18tokio-codec = "0.1"
19bytes = "0.4"
20xml5ever = "0.12"
21minidom = "0.9"
22native-tls = "0.2"
23tokio-tls = "0.2"
24sasl = "0.4"
25jid = { version = "0.5", features = ["minidom"] }
26trust-dns-resolver = "0.9.1"
27trust-dns-proto = "0.4.0"
28xmpp-parsers = "0.11"
29idna = "0.1"
30try_from = "0.2"
31quick-xml = "0.12"
32derive-error = "0.0.4"