fix: Keep typing status on telegram while message is being processed

# Conflicts:
#	src/channels/mod.rs
This commit is contained in:
Jayson Reis 2026-02-18 09:10:37 +00:00 committed by Chummy
parent 1bfd50bce9
commit 12c5473083
3 changed files with 103 additions and 12 deletions

View file

@ -20,6 +20,7 @@ clap = { version = "4.5", features = ["derive"] }
# Async runtime - feature-optimized for size
tokio = { version = "1.42", default-features = false, features = ["rt-multi-thread", "macros", "time", "net", "io-util", "sync", "process", "io-std", "fs", "signal"] }
tokio-util = { version = "0.7", default-features = false }
# HTTP client - minimal features
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "blocking", "multipart", "stream"] }