Files
matrix-feedbot/Cargo.toml
mirsal 5c009476d6 matrix: Rework room send error handling
* Use the tracing crate instead of println macros
 * Do not panic on failure to send messages
 * Move the send code to a separate function in preparation for adding
   a proper retry implementation
2025-04-30 15:49:53 +00:00

20 lines
492 B
TOML

[package]
name = "matrix-feedbot"
version = "0.1.3"
edition = "2021"
license = "GPL-3.0-or-later"
authors = ["mirsal <mirsal@mirsal.fr>"]
[dependencies]
rand = "0.8"
serde = "1.0"
anyhow = "1.0"
chrono = "0.4"
tracing = "0.1"
feed-rs = "2.2"
reqwest = "0.12"
serde_yaml = "0.9"
tracing-subscriber = "0.3.18"
tokio = { version = "1.41", features = ["macros", "rt-multi-thread"] }
matrix-sdk = { version = "0.8.0", default-features = false, features = [ "native-tls", "anyhow", "markdown" ] }