714d850e69
We know those are Rust libraries, no need to add it to the path. This synchronises their directory with the crate name, hopefully reducing confusion.
29 lines
659 B
TOML
29 lines
659 B
TOML
[package]
|
|
name = "xmpp"
|
|
version = "0.3.0"
|
|
authors = [
|
|
"Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>",
|
|
"Maxime “pep” Buquet <pep@bouah.net>",
|
|
]
|
|
description = "High-level XMPP library"
|
|
homepage = "https://gitlab.com/xmpp-rs/xmpp-rs"
|
|
repository = "https://gitlab.com/xmpp-rs/xmpp-rs"
|
|
keywords = ["xmpp", "jabber", "chat", "messaging", "bot"]
|
|
categories = ["network-programming"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
tokio-xmpp = "2.0.0"
|
|
xmpp-parsers = "0.17"
|
|
futures = "0.3"
|
|
tokio = "0.2"
|
|
log = "0.4"
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.7"
|
|
|
|
[features]
|
|
default = ["avatars"]
|
|
avatars = []
|
|
serde = ["tokio-xmpp/serde", "xmpp-parsers/serde"]
|