-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
34 lines (31 loc) · 931 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "mxlink"
description = "A library for connecting (linking) to the Matrix Client Server API (for building bots, etc.)"
authors = ["Slavi Pantaleev <[email protected]>"]
repository = "https://github.com/etkecc/rust-mxlink"
license = "LGPL-3.0"
readme = "README.md"
keywords = ["matrix", "messaging", "sdk", "ruma"]
exclude = [".editorconfig", "justfile"]
version = "1.4.1"
edition = "2021"
[lib]
name = "mxlink"
path = "src/lib.rs"
[dependencies]
base64 = "0.22.*"
chacha20poly1305 = "0.10.*"
hex = "0.4.*"
matrix-sdk = { version = "0.8.0", features = ["native-tls", "sqlite", "markdown"] }
mime = "0.3.*"
quick_cache = "0.6.*"
rand = "0.8.*"
serde = { version = "1.0.*", features = ["derive"], default-features = false }
serde_json = "1.0.*"
thiserror = "2.0.*"
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
tracing = "0.1.*"
[profile.release]
strip = true
opt-level = "z"
lto = true