[package]
edition = "2024"
name = "mxlink"
version = "1.12.0"
authors = ["Slavi Pantaleev <slavi@devture.com>"]
build = false
exclude = [
".editorconfig",
"justfile",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library for connecting (linking) to the Matrix Client Server API (for building bots, etc.)"
readme = "README.md"
keywords = [
"matrix",
"messaging",
"sdk",
"ruma",
]
license = "LGPL-3.0"
repository = "https://github.com/etkecc/rust-mxlink"
[lib]
name = "mxlink"
path = "src/lib.rs"
[[example]]
name = "quick_start"
path = "examples/quick_start.rs"
[dependencies.base64]
version = "0.22.*"
[dependencies.chacha20poly1305]
version = "0.10.*"
[dependencies.hex]
version = "0.4.*"
[dependencies.matrix-sdk]
version = "0.16.0"
features = [
"native-tls",
"sqlite",
"markdown",
]
[dependencies.mime]
version = "0.3.*"
[dependencies.quick_cache]
version = "0.6.*"
[dependencies.rand]
version = "0.10.*"
[dependencies.serde]
version = "1.0.*"
features = ["derive"]
default-features = false
[dependencies.serde_json]
version = "1.0.*"
[dependencies.thiserror]
version = "2.0.*"
[dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
"macros",
]
[dependencies.tracing]
version = "0.1.*"
[profile.release]
opt-level = "z"
lto = true
strip = true