sendxmpp-rs/Cargo.toml

35 lines
827 B
TOML
Raw Permalink Normal View History

2017-08-11 00:37:50 -04:00
[package]
2017-08-12 23:59:43 -04:00
name = "sendxmpp"
2022-11-04 23:18:50 -04:00
version = "3.0.1"
2017-08-11 00:37:50 -04:00
authors = ["moparisthebest <admin@moparisthebest.com>"]
2019-01-25 20:14:43 -05:00
description = "Send XMPP messages from the command line."
2019-01-25 20:14:43 -05:00
repository = "https://code.moparisthebest.com/moparisthebest/sendxmpp-rs"
keywords = ["xmpp"]
2021-01-16 02:06:05 -05:00
license = "AGPL-3.0-or-later"
2017-08-12 23:59:43 -04:00
readme = "README.md"
2017-08-11 00:37:50 -04:00
2019-01-25 21:56:50 -05:00
edition = "2018"
2021-01-16 02:06:05 -05:00
include = [
"**/*.rs",
"Cargo.toml",
"*.md",
"sendxmpp.toml",
]
2019-01-31 22:14:35 -05:00
2017-08-11 00:37:50 -04:00
[dependencies]
toml = "0.5"
serde_derive = "1.0"
serde = { version = "1.0", features = ["derive"] }
gumdrop = "0.8.0"
gumdrop_derive = "0.8.0"
2022-11-04 22:59:46 -04:00
dirs = "4.0.0"
tokio-xmpp = { version = "3.2.0", default-features = false, features = ["tls-rust"] }
tokio = { version = "1", features = ["net", "rt", "rt-multi-thread", "macros", "io-util", "io-std"] }
2022-11-04 22:59:46 -04:00
xmpp-parsers = "0.19"
die = "0.2.0"
anyhow = "1.0"
env_logger = "0.9"