2019-03-21 17:41:29 +00:00
|
|
|
[package]
|
|
|
|
name = "xmpp"
|
2023-05-18 14:37:05 +00:00
|
|
|
version = "0.4.0"
|
2019-09-12 21:05:04 +00:00
|
|
|
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"
|
2023-05-18 14:30:03 +00:00
|
|
|
homepage = "https://xmpp.rs"
|
2019-10-19 23:04:22 +00:00
|
|
|
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]
|
2023-05-18 14:12:22 +00:00
|
|
|
tokio-xmpp = "3.2"
|
2022-03-07 12:15:08 +00:00
|
|
|
xmpp-parsers = "0.19"
|
2020-03-08 18:57:59 +00:00
|
|
|
futures = "0.3"
|
2021-12-28 20:53:54 +00:00
|
|
|
tokio = { version = "1", features = ["fs"] }
|
2019-09-29 02:08:56 +00:00
|
|
|
log = "0.4"
|
2021-12-26 23:48:37 +00:00
|
|
|
reqwest = { version = "0.11.8", features = ["stream"] }
|
2023-04-03 10:13:37 +00:00
|
|
|
tokio-util = { version = "0.7", features = ["codec"] }
|
2019-10-20 19:16:17 +00:00
|
|
|
|
2020-03-13 22:22:10 +00:00
|
|
|
[dev-dependencies]
|
2023-04-03 10:13:37 +00:00
|
|
|
env_logger = "0.10"
|
2020-03-13 22:22:10 +00:00
|
|
|
|
2023-08-17 20:29:04 +00:00
|
|
|
[[example]]
|
|
|
|
name = "hello_bot"
|
2023-08-20 19:33:55 +00:00
|
|
|
required-features = ["avatars"]
|
2023-08-17 20:29:04 +00:00
|
|
|
|
2019-10-20 19:16:17 +00:00
|
|
|
[features]
|
|
|
|
default = ["avatars"]
|
|
|
|
avatars = []
|