botkit-matrix 0.2.0

Matrix implementation for botkit
Documentation
[package]
name = "botkit-matrix"
version = "0.2.0"
edition.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
description = "Matrix implementation for botkit"

[dependencies]
botkit-core.workspace = true
mime_guess = "2.0.5"
tracing = "0.1.44"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
rustls = { version = "0.23", default-features = false, features = ["aws-lc-rs"] }
matrix-sdk = { version = "0.18", default-features = false, features = ["bundled-sqlite", "e2e-encryption", "sqlite"] }

[target.'cfg(target_arch = "wasm32")'.dependencies]
# Must track the version matrix-sdk pulls, so the feature lands on the same
# crate. It also needs `--cfg getrandom_backend="wasm_js"`, set for this target
# in .cargo/config.toml.
getrandom = { version = "0.3", features = ["wasm_js"] }
matrix-sdk = { version = "0.18", default-features = false, features = ["e2e-encryption", "js"] }