[package] name = "telegram_bot_api_rs" version = "0.1.1" edition = "2021" description = "Telegram Bot Api Rust Library" license = "MIT OR Apache-2.0" authors = ["canxin121 "] homepage = "https://github.com/canxin121/telegram_bot_api_rs" repository = "https://github.com/canxin121/telegram_bot_api_rs" readme = "Readme.md" keywords = ["bot", "chatbot", "telegram"] categories = ["science::robotics", "api-bindings"] [dependencies] anyhow = "1.0.86" async-trait = "0.1.82" mime_guess = "2.0.5" rand = "0.8.5" reqwest = { version = "0.12.7", features = [ "json", "multipart", "stream", "rustls-tls", ], default-features = false } serde = { version = "1.0.209", features = ["derive"] } serde_json = "1.0.128" tokio = { version = "1.40.0", features = ["full"] } tokio-util = { version = "0.7.12", features = ["codec"] } tracing = "0.1.40" tracing-subscriber = "0.3.18" urlencoding = "2.1.3"