kiss-xmpp/Cargo.toml
moparisthebest 3697cbfe2d
Some checks failed
moparisthebest/kiss-xmpp/pipeline/head There was a failure building this commit
moparisthebest/kiss-xmpp/pipeline/pr-master There was a failure building this commit
POC that connects to TCP localhost through changed tokio-xmpp
2023-12-29 22:03:27 -05:00

52 lines
1.4 KiB
TOML

[package]
name = "kiss-xmpp"
version = "0.0.1"
authors = ["moparisthebest <admin@moparisthebest.com>"]
description = "XMPP client that keeps it simple, stupid."
repository = "https://code.moparisthebest.com/moparisthebest/kiss-xmpp"
keywords = ["xmpp", "chat", "client"]
license = "AGPL-3.0-or-later"
readme = "README.md"
edition = "2021"
include = [
"**/*.rs",
"Cargo.toml",
"*.md",
"kiss-xmpp.toml",
]
[dependencies]
futures = "0.3"
toml = "0.8"
serde_derive = "1.0"
serde = { version = "1.0", features = ["derive"] }
dirs = "5.0.1"
tokio = { version = "1", features = ["net", "rt", "rt-multi-thread", "macros", "io-util", "io-std"] }
die = "0.2.0"
anyhow = "1.0"
log = "0.4"
env_logger = "0.10"
rand = "0.8.5"
async-recursion = "1.0.5"
# from xmpp-rs
minidom = "0.15"
tokio-xmpp = { version = "3.5.0", default-features = false, features = ["tls-rust"] }
xmpp-parsers = "0.20"
[profile.release]
strip = true
[patch.crates-io]
# minidom = { path = "../xmpp-rs/minidom" }
# tokio-xmpp = { path = "../xmpp-rs/tokio-xmpp" }
# xmpp-parsers = { path = "../xmpp-rs/parsers" }
minidom = { git = "https://gitlab.com/moparisthebest/xmpp-rs", branch = "task/async-client-any-stream" }
tokio-xmpp = { git = "https://gitlab.com/moparisthebest/xmpp-rs", branch = "task/async-client-any-stream" }
xmpp-parsers = { git = "https://gitlab.com/moparisthebest/xmpp-rs", branch = "task/async-client-any-stream" }