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