2017-06-01 22:42:57 +00:00
|
|
|
[package]
|
|
|
|
name = "tokio-xmpp"
|
2020-03-05 00:25:24 +00:00
|
|
|
version = "2.0.0"
|
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"
|
2019-10-19 23:04:22 +00:00
|
|
|
homepage = "https://gitlab.com/xmpp-rs/xmpp-rs"
|
|
|
|
repository = "https://gitlab.com/xmpp-rs/xmpp-rs"
|
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]
|
2020-12-04 16:33:55 +00:00
|
|
|
bytes = "1"
|
2020-03-05 00:25:24 +00:00
|
|
|
futures = "0.3"
|
2019-09-08 19:28:44 +00:00
|
|
|
idna = "0.2"
|
2019-12-09 02:34:28 +00:00
|
|
|
log = "0.4"
|
2019-09-08 19:28:44 +00:00
|
|
|
native-tls = "0.2"
|
2020-12-26 19:11:23 +00:00
|
|
|
sasl = "0.5"
|
2020-12-04 16:33:55 +00:00
|
|
|
tokio = { version = "1", features = ["net", "rt", "rt-multi-thread", "macros"] }
|
|
|
|
tokio-util = { version = "0.6", features = ["codec"] }
|
|
|
|
tokio-stream = { version = "0.1", features = [] }
|
|
|
|
tokio-tls = { package = "tokio-native-tls", version = "0.3" }
|
2020-12-30 02:15:59 +00:00
|
|
|
trust-dns-resolver = "0.20"
|
|
|
|
trust-dns-proto = "0.20"
|
2019-12-29 17:42:33 +00:00
|
|
|
xml5ever = "0.16"
|
2021-01-12 23:11:05 +00:00
|
|
|
xmpp-parsers = "0.18"
|
2020-04-30 21:19:06 +00:00
|
|
|
|
2020-12-25 01:05:02 +00:00
|
|
|
[build-dependencies]
|
|
|
|
rustc_version = "0.3"
|
|
|
|
|
2020-04-30 21:19:06 +00:00
|
|
|
[features]
|
|
|
|
serde = ["xmpp-parsers/serde"]
|