moparisthebest
88e39e3771
Some checks failed
moparisthebest/sendxmpp-rs/pipeline/head There was a failure building this commit
39 lines
945 B
TOML
39 lines
945 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 = { git = "https://gitlab.com/moparisthebest/xmpp-rs.git", branch = "main", default-features = false }
|
|
tokio = { version = "1", features = ["net", "rt", "rt-multi-thread", "macros", "io-util", "io-std"] }
|
|
xmpp-parsers = "0.18"
|
|
die = "0.2.0"
|
|
anyhow = "1.0"
|
|
|
|
[features]
|
|
default = ["tls-rust"]
|
|
tls-rust = ["tokio-xmpp/tls-rust"]
|
|
tls-native = ["tokio-xmpp/tls-native"]
|