2017-06-01 22:42:57 +00:00
|
|
|
[package]
|
|
|
|
name = "tokio-xmpp"
|
2019-01-17 00:41:59 +00:00
|
|
|
version = "0.2.3"
|
2018-09-08 00:13:18 +00:00
|
|
|
authors = ["Astro <astro@spaceboyz.net>", "Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>", "pep <pep+code@bouah.net>", "O01eg <o01eg@yandex.ru>"]
|
2018-07-31 22:28:24 +00:00
|
|
|
description = "Asynchronous XMPP for Rust with tokio"
|
|
|
|
license = "MPL-2.0"
|
2018-12-20 16:30:32 +00:00
|
|
|
homepage = "https://gitlab.com/xmpp-rs/tokio-xmpp"
|
|
|
|
repository = "https://gitlab.com/xmpp-rs/tokio-xmpp"
|
2018-07-31 22:28:24 +00:00
|
|
|
documentation = "https://docs.rs/tokio-xmpp"
|
2018-08-02 23:16:42 +00:00
|
|
|
categories = ["asynchronous", "network-programming"]
|
|
|
|
keywords = ["xmpp", "tokio"]
|
2018-12-18 17:29:31 +00:00
|
|
|
edition = "2018"
|
2017-06-01 22:42:57 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2018-07-31 21:37:12 +00:00
|
|
|
futures = "0.1"
|
2018-09-01 19:59:02 +00:00
|
|
|
tokio = "0.1"
|
2018-07-31 21:37:12 +00:00
|
|
|
tokio-io = "0.1"
|
|
|
|
tokio-codec = "0.1"
|
2018-09-08 00:13:18 +00:00
|
|
|
bytes = "0.4"
|
2018-07-31 21:37:12 +00:00
|
|
|
xml5ever = "0.12"
|
2018-09-01 19:59:02 +00:00
|
|
|
native-tls = "0.2"
|
|
|
|
tokio-tls = "0.2"
|
2018-07-31 21:37:12 +00:00
|
|
|
sasl = "0.4"
|
2019-01-17 00:24:26 +00:00
|
|
|
trust-dns-resolver = "0.10"
|
|
|
|
trust-dns-proto = "0.6"
|
2019-01-16 13:35:38 +00:00
|
|
|
xmpp-parsers = "0.12.2"
|
2018-07-31 21:37:12 +00:00
|
|
|
idna = "0.1"
|
2019-01-16 13:35:38 +00:00
|
|
|
quick-xml = "0.13"
|
2018-09-06 15:46:06 +00:00
|
|
|
derive-error = "0.0.4"
|