2019-03-21 18:41:29 +01:00
|
|
|
[package]
|
|
|
|
|
name = "xmpp"
|
2023-08-21 11:00:27 +02:00
|
|
|
version = "0.5.0"
|
2019-09-12 23:05:04 +02:00
|
|
|
authors = [
|
|
|
|
|
"Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>",
|
|
|
|
|
"Maxime “pep” Buquet <pep@bouah.net>",
|
|
|
|
|
]
|
2019-07-25 15:37:00 +02:00
|
|
|
description = "High-level XMPP library"
|
2023-05-18 16:30:03 +02:00
|
|
|
homepage = "https://xmpp.rs"
|
2019-10-20 01:04:22 +02:00
|
|
|
repository = "https://gitlab.com/xmpp-rs/xmpp-rs"
|
2019-07-25 15:37:00 +02:00
|
|
|
keywords = ["xmpp", "jabber", "chat", "messaging", "bot"]
|
|
|
|
|
categories = ["network-programming"]
|
2019-07-25 15:36:45 +02:00
|
|
|
license = "MPL-2.0"
|
2023-11-11 14:52:55 +01:00
|
|
|
edition = "2021"
|
2019-03-21 18:41:29 +01:00
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-31 21:06:15 +01:00
|
|
|
chrono = "0.4"
|
2020-03-08 19:57:59 +01:00
|
|
|
futures = "0.3"
|
2021-12-28 21:53:54 +01:00
|
|
|
tokio = { version = "1", features = ["fs"] }
|
2019-09-29 04:08:56 +02:00
|
|
|
log = "0.4"
|
2024-06-02 22:35:45 +02:00
|
|
|
reqwest = { version = "0.12", features = ["stream"], default-features = false }
|
2023-04-03 12:13:37 +02:00
|
|
|
tokio-util = { version = "0.7", features = ["codec"] }
|
2023-12-18 13:06:22 +01:00
|
|
|
# same repository dependencies
|
2023-12-29 01:09:33 -05:00
|
|
|
tokio-xmpp = { version = "3.4", path = "../tokio-xmpp", default-features = false }
|
2019-10-20 21:16:17 +02:00
|
|
|
|
2020-03-13 23:22:10 +01:00
|
|
|
[dev-dependencies]
|
2024-04-25 21:01:29 +02:00
|
|
|
env_logger = { version = "0.11", default-features = false, features = ["auto-color", "humantime"] }
|
2020-03-13 23:22:10 +01:00
|
|
|
|
2023-08-17 22:29:04 +02:00
|
|
|
[[example]]
|
|
|
|
|
name = "hello_bot"
|
2023-08-20 21:33:55 +02:00
|
|
|
required-features = ["avatars"]
|
2023-08-17 22:29:04 +02:00
|
|
|
|
2019-10-20 21:16:17 +02:00
|
|
|
[features]
|
2023-12-30 22:08:37 -05:00
|
|
|
default = ["avatars", "starttls-rust"]
|
2024-06-02 22:35:45 +02:00
|
|
|
starttls-native = ["tokio-xmpp/starttls", "tokio-xmpp/tls-native", "reqwest/native-tls"]
|
|
|
|
|
starttls-rust = ["tokio-xmpp/starttls", "tokio-xmpp/tls-rust", "reqwest/rustls-tls"]
|
2019-10-20 21:16:17 +02:00
|
|
|
avatars = []
|
2024-06-04 19:36:56 +02:00
|
|
|
syntax-highlighting = [ "tokio-xmpp/syntax-highlighting" ]
|