xmpp-rs/Cargo.toml

32 lines
838 B
TOML
Raw Normal View History

2017-06-01 22:42:57 +00:00
[package]
name = "tokio-xmpp"
2018-08-02 23:16:42 +00:00
version = "0.1.2"
authors = ["Astro <astro@spaceboyz.net>", "Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>", "pep <pep+code@bouah.net>"]
2018-07-31 22:28:24 +00:00
description = "Asynchronous XMPP for Rust with tokio"
license = "MPL-2.0"
homepage = "https://github.com/astro/tokio-xmpp"
repository = "https://github.com/astro/tokio-xmpp"
documentation = "https://docs.rs/tokio-xmpp"
2018-08-02 23:16:42 +00:00
categories = ["asynchronous", "network-programming"]
keywords = ["xmpp", "tokio"]
2017-06-01 22:42:57 +00:00
[dependencies]
2018-07-31 21:37:12 +00:00
futures = "0.1"
tokio-core = "0.1"
tokio-io = "0.1"
tokio-codec = "0.1"
2018-07-31 20:37:04 +00:00
bytes = "0.4.9"
2018-07-31 21:37:12 +00:00
xml5ever = "0.12"
minidom = "0.9"
2018-07-31 20:37:04 +00:00
# TODO: update to 0.2.0
native-tls = "0.1"
2018-07-31 21:37:12 +00:00
tokio-tls = "0.1"
sasl = "0.4"
jid = { version = "0.5", features = ["minidom"] }
domain = "0.2"
xmpp-parsers = "0.11"
2018-07-31 21:37:12 +00:00
idna = "0.1"
try_from = "0.2"
quick-xml = "0.12"
2018-09-06 15:46:06 +00:00
derive-error = "0.0.4"