40 lines
1.2 KiB
TOML
40 lines
1.2 KiB
TOML
[package]
|
|
name = "muchrooms"
|
|
authors = ["Maxime “pep” Buquet <pep@bouah.net>"]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "AGPL-3.0-or-later"
|
|
description = "MUC component implementation."
|
|
|
|
[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.5", default-features = false, features = ["tls-rust"] }
|
|
xmpp-parsers = { version = "*", features = ["component"] }
|
|
minidom = { version = "*" }
|
|
jid = { version = "*" }
|
|
|
|
[dev-dependencies]
|
|
syntect = "5.0"
|
|
diff = "0.1"
|
|
scansion = { version = "0.1" }
|
|
|
|
[build-dependencies]
|
|
jid = { version = "*", features = ["minidom"] }
|
|
minidom = { version = "*" }
|
|
quote = "1.0"
|
|
rand = "0.8"
|
|
scansion = { version = "0.1", features = ["quote"] }
|
|
|
|
[patch.crates-io]
|
|
sasl = { git = "https://code.bouah.net/pep/xmpp-rs.git" }
|
|
jid = { git = "https://code.bouah.net/pep/xmpp-rs.git", branch = "jid-quote" }
|
|
minidom = { git = "https://code.bouah.net/pep/xmpp-rs.git" }
|
|
xmpp-parsers = { git = "https://code.bouah.net/pep/xmpp-rs.git" }
|
|
tokio-xmpp = { git = "https://code.bouah.net/pep/xmpp-rs.git" }
|
|
scansion = { git = "https://code.bouah.net/pep/scansion-rs.git" }
|