[package]
name = "lisa"
version = "0.1.0"
edition = "2024"
rust-version = "1.93"
description = "A persona-driven Matrix bot"
license = "MIT OR Apache-2.0"
[dependencies]
base64 = "0.22"
matrix-sdk = { version = "0.18", default-features = false, features = ["sqlite"] }
rand = "0.9"
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls"] }
rusqlite = { version = "0.37", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
thiserror = "2"
tempfile = "3"
tokio = { version = "1", features = ["io-util", "macros", "process", "rt-multi-thread", "signal", "sync", "time"] }
tokio-util = "0.7"
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
url = "2"
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
module_name_repetitions = "allow"