moparisthebest
d2ee6168fb
Some checks failed
moparisthebest/sendxmpp-rs/pipeline/head There was a failure building this commit
36 lines
806 B
TOML
36 lines
806 B
TOML
[package]
|
|
name = "sendxmpp"
|
|
version = "2.0.0"
|
|
authors = ["moparisthebest <admin@moparisthebest.com>"]
|
|
|
|
description = "Send XMPP messages from the command line."
|
|
repository = "https://code.moparisthebest.com/moparisthebest/sendxmpp-rs"
|
|
keywords = ["xmpp"]
|
|
|
|
license = "AGPL-3.0-or-later"
|
|
readme = "README.md"
|
|
|
|
edition = "2018"
|
|
|
|
include = [
|
|
"**/*.rs",
|
|
"Cargo.toml",
|
|
"*.md",
|
|
"sendxmpp.toml",
|
|
]
|
|
|
|
[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", "io-util", "io-std"] }
|
|
tokio-tls = { package = "tokio-native-tls", version = "0.3" }
|
|
xmpp-parsers = "0.18"
|
|
die = "0.2.0"
|
|
anyhow = "1.0"
|
|
|