1[package]
2name = "tokio-xmpp"
3version = "1.0.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://gitlab.com/xmpp-rs/tokio-xmpp"
8repository = "https://gitlab.com/xmpp-rs/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"
21native-tls = "0.2"
22tokio-tls = "0.2"
23sasl = "0.4"
24trust-dns-resolver = "0.10"
25trust-dns-proto = "0.6"
26xmpp-parsers = "0.13"
27idna = "0.1"
28quick-xml = "0.13"
29derive-error = "0.0.4"