muchrooms/Cargo.toml

24 lines
657 B
TOML
Raw Normal View History

[package]
name = "hanabi-muc"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
description = "MUC implementation allowing participants to play the Hanabi game."
[dependencies]
async-trait = "^0.1"
chrono = "0.4.22"
env_logger = "^0.9"
futures = "^0.3"
lazy_static = "^1.4"
log = "^0.4"
tokio = "^1.20"
tokio-xmpp = { version = "^3.2", default-features = false, features = ["tls-rust"] }
xmpp-parsers = { version = "^0.19", features = ["component"] }
[patch.crates-io]
jid = { path = "../xmpp-rs/jid" }
minidom = { path = "../xmpp-rs/minidom" }
tokio-xmpp = { path = "../xmpp-rs/tokio-xmpp" }
xmpp-parsers = { path = "../xmpp-rs/parsers" }