[package] name = "tele-core" version = "0.1.0" edition = "2021" authors = ["Your Name "] description = "Reusable Telegram/TDLib core for tele-tui" license = "MIT" repository = "https://github.com/your-username/tele-tui" keywords = ["telegram", "tdlib"] categories = ["api-bindings"] [features] default = ["tdlib-download"] images = [] test-support = [] tdlib-download = ["tdlib-rs/download-tdlib"] tdlib-local = ["tdlib-rs/local-tdlib"] [dependencies] tdlib-rs = { version = "1.2.0", default-features = false } tokio = { version = "1", features = ["full"] } async-trait = "0.1" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" chrono = "0.4" thiserror = "1.0" tracing = "0.1" base64 = "0.22.1" [dev-dependencies] tokio-test = "0.4"