2023-05-23 02:49:37 +00:00
|
|
|
[package]
|
|
|
|
name = "multibridge"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2023-05-24 04:23:36 +00:00
|
|
|
[features]
|
|
|
|
irc = ["dep:irc"]
|
|
|
|
matrix = ["dep:matrix-sdk"]
|
|
|
|
discord = ["dep:serenity"]
|
|
|
|
default = ["irc", "matrix", "discord"]
|
|
|
|
|
2023-05-23 02:49:37 +00:00
|
|
|
[dependencies]
|
2023-05-24 04:23:36 +00:00
|
|
|
env_logger = "0.10"
|
|
|
|
log = "0.4"
|
2023-05-23 02:49:37 +00:00
|
|
|
futures = "0.3"
|
|
|
|
tokio = { version = "1.28", features = ["rt-multi-thread", "macros", "time", "sync"] }
|
|
|
|
async-trait = "0.1"
|
2023-05-24 04:23:36 +00:00
|
|
|
toml = "0.7"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
|
|
|
|
[dependencies.irc]
|
|
|
|
version = "0.15"
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
[dependencies.matrix-sdk]
|
|
|
|
version = "0.6"
|
|
|
|
optional = true
|
2023-05-23 02:49:37 +00:00
|
|
|
|
2023-05-24 04:23:36 +00:00
|
|
|
[dependencies.serenity]
|
|
|
|
version = "0.11"
|
|
|
|
optional = true
|
|
|
|
default-features = false
|
|
|
|
features = ["client", "cache", "gateway", "rustls_backend", "model"]
|