Files
tglock/Cargo.toml
T
2026-07-29 15:22:54 +03:00

30 lines
691 B
TOML

[package]
name = "tglock"
version = "2.0.0-beta.1"
edition = "2021"
rust-version = "1.88"
description = "Telegram unblock via local WebSocket tunnel"
license = "MIT"
[dependencies]
tauri = { version = "2", features = [] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["rt-multi-thread", "net", "io-util", "time", "macros", "sync"] }
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"
sha2 = "0.10"
rand = "0.8"
open = "5"
[build-dependencies]
tauri-build = { version = "2", features = [] }
[[bin]]
name = "tglock"
path = "src/main.rs"