muchrooms/Cargo.toml
Maxime “pep” Buquet 88828da67e
New ComponentTrait for testing
Move handlers in their own module. Add a component module for the
Component newtype and TestComponent. Add a tests component.

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
2022-09-10 10:36:56 +02:00

22 lines
639 B
TOML

[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"
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" }