2022-09-07 18:08:27 +00:00
|
|
|
[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]
|
2022-09-08 08:49:16 +00:00
|
|
|
async-trait = "^0.1"
|
2022-09-10 15:56:24 +00:00
|
|
|
chrono = "0.4.22"
|
2022-09-07 18:08:27 +00:00
|
|
|
env_logger = "^0.9"
|
|
|
|
futures = "^0.3"
|
2022-09-08 08:49:16 +00:00
|
|
|
lazy_static = "^1.4"
|
2022-09-07 18:08:27 +00:00
|
|
|
log = "^0.4"
|
|
|
|
tokio = "^1.20"
|
|
|
|
tokio-xmpp = { version = "^3.2", default-features = false, features = ["tls-rust"] }
|
|
|
|
xmpp-parsers = { version = "^0.19", features = ["component"] }
|