This commit is contained in:
2025-08-26 15:27:26 +04:00
parent c44751a91e
commit 3972656c61
6 changed files with 624 additions and 57 deletions

View File

@@ -4,7 +4,13 @@ version = "0.1.0"
edition = "2024"
[dependencies]
dotenv_codegen = "0.15.0"
dotenvy = "0.15.7"
flate2 = { version = "1.1.2", features = ["zlib"] }
indicatif = "0.18.0"
inquire = "0.7.5"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.143"
tdlib-rs = { version = "1.1.0", features = ["pkg-config"] }
tokio = { version = "1.47.1", features = ["full"] }
@@ -13,3 +19,10 @@ tdlib-rs = { version = "1.1.0", features = ["pkg-config"] }
[package.metadata.system-deps]
tdjson = "1.8.29"
[profile.release]
codegen-units = 1
lto = true
opt-level = "z"
strip = true
panic = "abort"