2017-06-02 00:42:57 +02:00
|
|
|
[package]
|
|
|
|
|
name = "tokio-xmpp"
|
2021-01-13 17:27:21 +01:00
|
|
|
version = "3.0.0"
|
2021-01-13 17:21:49 +01:00
|
|
|
authors = ["Astro <astro@spaceboyz.net>", "Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>", "pep <pep+code@bouah.net>", "O01eg <o01eg@yandex.ru>", "SonnyX <randy@vonderweide.nl>", "Paul Fariello <paul@fariello.eu>"]
|
2018-08-01 00:28:24 +02:00
|
|
|
description = "Asynchronous XMPP for Rust with tokio"
|
|
|
|
|
license = "MPL-2.0"
|
2019-10-20 01:04:22 +02:00
|
|
|
homepage = "https://gitlab.com/xmpp-rs/xmpp-rs"
|
|
|
|
|
repository = "https://gitlab.com/xmpp-rs/xmpp-rs"
|
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]
|
2020-12-04 17:33:55 +01:00
|
|
|
bytes = "1"
|
2020-03-05 01:25:24 +01:00
|
|
|
futures = "0.3"
|
2019-09-08 21:28:44 +02:00
|
|
|
idna = "0.2"
|
2019-12-09 03:34:28 +01:00
|
|
|
log = "0.4"
|
2021-02-15 19:59:46 +01:00
|
|
|
native-tls = { version = "0.2", optional = true }
|
2020-12-26 20:11:23 +01:00
|
|
|
sasl = "0.5"
|
2020-12-04 17:33:55 +01:00
|
|
|
tokio = { version = "1", features = ["net", "rt", "rt-multi-thread", "macros"] }
|
2021-02-15 19:59:46 +01:00
|
|
|
tokio-native-tls = { version = "0.3", optional = true }
|
|
|
|
|
tokio-rustls = { version = "0.22", optional = true }
|
2020-12-04 17:33:55 +01:00
|
|
|
tokio-stream = { version = "0.1", features = [] }
|
2021-02-15 19:59:46 +01:00
|
|
|
tokio-util = { version = "0.6", features = ["codec"] }
|
2020-12-30 03:15:59 +01:00
|
|
|
trust-dns-proto = "0.20"
|
2021-02-15 19:59:46 +01:00
|
|
|
trust-dns-resolver = "0.20"
|
2019-12-29 18:42:33 +01:00
|
|
|
xml5ever = "0.16"
|
2021-01-13 00:11:05 +01:00
|
|
|
xmpp-parsers = "0.18"
|
2021-02-15 19:59:46 +01:00
|
|
|
webpki = { version = "0.21", optional = true }
|
2021-02-15 20:45:58 +01:00
|
|
|
webpki-roots = { version = "0.21", optional = true }
|
2020-04-30 23:19:06 +02:00
|
|
|
|
2020-12-25 02:05:02 +01:00
|
|
|
[build-dependencies]
|
|
|
|
|
rustc_version = "0.3"
|
|
|
|
|
|
2020-04-30 23:19:06 +02:00
|
|
|
[features]
|
2021-02-15 19:59:46 +01:00
|
|
|
default = ["tls-native"]
|
2021-02-15 20:45:58 +01:00
|
|
|
tls-rust = ["tokio-rustls", "webpki", "webpki-roots"]
|
2021-02-15 19:59:46 +01:00
|
|
|
tls-native = ["tokio-native-tls", "native-tls"]
|
2020-04-30 23:19:06 +02:00
|
|
|
serde = ["xmpp-parsers/serde"]
|