mirror of
https://github.com/TheFunny/TelegramTwitterMediaBot.git
synced 2026-09-23 23:32:05 +00:00
New in 1.2.0: - feat: debounced inline queries, bounded graceful shutdown, config fail-fast on invalid env values - fix: local-media tasks (ugoira/bsky MP4) survive queue retries, photo-first ordering in mixed media groups, caption truncation to Telegram's 1024-char limit - perf: SQLite connection pool, concurrent upload-fallback downloads, ugoira zip streamed to disk, photo processing without re-reading the temp file, release profile LTO - ci: test/clippy gate + layered live/token job - docs: English README (README.en.md)
26 lines
658 B
TOML
26 lines
658 B
TOML
[package]
|
|
name = "xmedia-bot"
|
|
version = "1.2.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
teloxide = { version = "0.17", default-features = false, features = ["webhooks-axum", "macros", "rustls", "ctrlc_handler"] }
|
|
tokio = { version = "1.40", features = ["rt-multi-thread", "macros"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
log = "0.4"
|
|
pretty_env_logger = "0.5"
|
|
dotenv = "0.15"
|
|
url = "2.5.2"
|
|
html-escape = "0.2"
|
|
rusqlite = { version = "0.32", features = ["bundled"] }
|
|
rand = "0.8"
|
|
tempfile = "3"
|
|
parking_lot = "0.12"
|
|
bytes = "1"
|
|
png = "0.18"
|
|
zune-jpeg = "0.5"
|
|
fast_image_resize = "6"
|
|
jpeg-encoder = "0.7"
|
|
x-media = { path = "../x-media" }
|