Files
tglock/Cargo.toml
2026-04-08 14:56:50 +03:00

23 lines
481 B
TOML

[package]
name = "tglock"
version = "1.0.0"
edition = "2021"
description = "Telegram unblock via local WebSocket tunnel"
license = "MIT"
[dependencies]
eframe = "0.31"
egui = "0.31"
tokio = { version = "1", features = ["rt-multi-thread", "net", "io-util", "time", "macros"] }
tokio-tungstenite = { version = "0.24", features = ["native-tls"] }
native-tls = "0.2"
futures-util = "0.3"
aes = "0.8"
ctr = "0.9"
cipher = "0.4"
open = "5"
[[bin]]
name = "tglock"
path = "src/main.rs"