1
Fork 0
mirror of https://github.com/Steffo99/patched-porobot.git synced 2024-10-16 09:37:27 +00:00

Use matrix-sdk-appservice from the vendored submodule

This commit is contained in:
Steffo 2023-04-26 14:05:36 +00:00 committed by GitHub
parent c44645d701
commit 6e5e0b8688
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 445 additions and 724 deletions

1165
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -41,7 +41,7 @@ rand = { version = "0.8.5", optional = true }
serenity = { version = "0.11.5", features = ["client", "cache", "gateway", "rustls_backend", "model"], default-features = false, optional = true }
anyhow = { version = "^1.0.68", optional = true }
# matrix
matrix-sdk = { version = "^0.6.2", features = ["anyhow"], optional = true }
matrix-sdk-appservice = { path = "./vendor/matrix-rust-sdk/crates/matrix-sdk-appservice", features = ["anyhow"], optional = true }
[features]
# data = [] # Always included
@ -49,7 +49,7 @@ exec = ["pretty_env_logger"]
search = ["tantivy"]
telegram = ["exec", "search", "teloxide", "reqwest", "tokio", "md5", "rand"]
discord = ["exec", "search", "serenity", "tokio", "anyhow"]
matrix = ["exec", "search", "matrix-sdk", "anyhow"]
matrix = ["exec", "search", "matrix-sdk-appservice", "anyhow"]
[lib]