sendxmpp-rs/Cargo.toml

34 lines
722 B
TOML
Raw Normal View History

2017-08-11 00:37:50 -04:00
[package]
2017-08-12 23:59:43 -04:00
name = "sendxmpp"
version = "2.0.0"
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"
dirs = "3.0.1"
tokio-xmpp = "3.0.0"
tokio = { version = "1", features = ["net", "rt", "rt-multi-thread", "macros"] }
xmpp-parsers = "0.18"
die = "0.2.0"
anyhow = "1.0"