xmpp-rs/xmpp/Cargo.toml

30 lines
657 B
TOML
Raw Permalink Normal View History

2019-03-21 17:41:29 +00:00
[package]
name = "xmpp"
version = "0.3.0"
authors = [
"Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>",
"Maxime “pep” Buquet <pep@bouah.net>",
]
2019-07-25 13:37:00 +00:00
description = "High-level XMPP library"
homepage = "https://gitlab.com/xmpp-rs/xmpp-rs"
repository = "https://gitlab.com/xmpp-rs/xmpp-rs"
2019-07-25 13:37:00 +00:00
keywords = ["xmpp", "jabber", "chat", "messaging", "bot"]
categories = ["network-programming"]
2019-07-25 13:36:45 +00:00
license = "MPL-2.0"
2019-03-21 17:41:29 +00:00
edition = "2018"
[dependencies]
tokio-xmpp = "2.0.0"
xmpp-parsers = "0.17"
futures = "0.3"
2020-12-09 13:11:52 +00:00
tokio = "1"
log = "0.4"
[dev-dependencies]
2020-12-09 13:11:52 +00:00
env_logger = "0.8"
[features]
default = ["avatars"]
avatars = []
serde = ["tokio-xmpp/serde", "xmpp-parsers/serde"]