2017-06-01 22:42:57 +00:00
|
|
|
[package]
|
|
|
|
name = "tokio-xmpp"
|
2023-05-18 15:03:04 +00:00
|
|
|
version = "3.3.0"
|
2021-01-13 16:21:49 +00: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-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"
|
2023-06-20 16:37:49 +00:00
|
|
|
idna = "0.4"
|
2019-12-09 02:34:28 +00:00
|
|
|
log = "0.4"
|
2021-02-15 18:59:46 +00:00
|
|
|
native-tls = { version = "0.2", optional = true }
|
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"] }
|
2021-02-15 18:59:46 +00:00
|
|
|
tokio-native-tls = { version = "0.3", optional = true }
|
2023-04-03 10:13:37 +00:00
|
|
|
tokio-rustls = { version = "0.24", optional = true }
|
2020-12-04 16:33:55 +00:00
|
|
|
tokio-stream = { version = "0.1", features = [] }
|
2022-09-20 19:17:26 +00:00
|
|
|
tokio-util = { version = "0.7", features = ["codec"] }
|
|
|
|
trust-dns-proto = "0.22"
|
|
|
|
trust-dns-resolver = "0.22"
|
2022-03-07 12:14:47 +00:00
|
|
|
xmpp-parsers = "0.19"
|
2022-07-13 18:36:08 +00:00
|
|
|
minidom = "0.15"
|
2023-04-03 09:14:34 +00:00
|
|
|
rxml = "0.9.1"
|
2023-04-03 10:13:37 +00:00
|
|
|
webpki-roots = { version = "0.23", optional = true }
|
2022-09-07 11:10:38 +00:00
|
|
|
rand = "^0.8"
|
2023-06-18 12:21:49 +00:00
|
|
|
syntect = { version = "5", optional = true }
|
2020-04-30 21:19:06 +00:00
|
|
|
|
2023-06-05 11:06:52 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
env_logger = "0.10"
|
|
|
|
|
2020-12-25 01:05:02 +00:00
|
|
|
[build-dependencies]
|
2021-12-01 15:24:28 +00:00
|
|
|
rustc_version = "0.4"
|
2020-12-25 01:05:02 +00:00
|
|
|
|
2020-04-30 21:19:06 +00:00
|
|
|
[features]
|
2021-02-15 18:59:46 +00:00
|
|
|
default = ["tls-native"]
|
2021-12-01 15:24:28 +00:00
|
|
|
tls-rust = ["tokio-rustls", "webpki-roots"]
|
2021-02-15 18:59:46 +00:00
|
|
|
tls-native = ["tokio-native-tls", "native-tls"]
|
2023-06-18 12:21:49 +00:00
|
|
|
syntax-highlighting = ["syntect"]
|