xmpp-rs/tokio-xmpp/Cargo.toml

41 lines
1.3 KiB
TOML
Raw Normal View History

2017-06-01 22:42:57 +00:00
[package]
name = "tokio-xmpp"
version = "3.3.0"
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"
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]
bytes = "1"
2020-03-05 00:25:24 +00:00
futures = "0.3"
idna = "0.3"
log = "0.4"
native-tls = { version = "0.2", optional = true }
2020-12-26 19:11:23 +00:00
sasl = "0.5"
tokio = { version = "1", features = ["net", "rt", "rt-multi-thread", "macros"] }
tokio-native-tls = { version = "0.3", optional = true }
tokio-rustls = { version = "0.24", optional = true }
tokio-stream = { version = "0.1", features = [] }
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"
rxml = "0.9.1"
webpki-roots = { version = "0.23", optional = true }
rand = "^0.8"
[build-dependencies]
rustc_version = "0.4"
[features]
default = ["tls-native"]
tls-rust = ["tokio-rustls", "webpki-roots"]
tls-native = ["tokio-native-tls", "native-tls"]