30 lines
685 B
TOML
30 lines
685 B
TOML
[package]
|
|
name = "tele-core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Your Name <your.email@example.com>"]
|
|
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 = []
|
|
images = []
|
|
test-support = []
|
|
|
|
[dependencies]
|
|
tdlib-rs = { version = "1.2.0", features = ["download-tdlib"] }
|
|
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"
|