Files
NexaVPN/desktop-client/tunnel-helper/Cargo.toml
nessi a3e5eb32ec feat: add Windows service for elevated tunnel operations with IPC communication
Add Windows service to handle WireGuard tunnel operations with elevated privileges. Implement IPC server on TCP port 53189 for client-service communication using JSON protocol. Add install-service and uninstall-service commands to NSIS installer hooks for automatic service installation. Replace direct WireGuard calls with IPC requests when running on Windows. Add TunnelRequest and TunnelResponse types for IPC protocol
2026-03-17 21:56:13 +01:00

13 lines
274 B
TOML

[package]
name = "nexavpn-tunnel-helper"
version = "0.1.0"
edition = "2021"
description = "Bundled tunnel helper for NexaVPN"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[target.'cfg(windows)'.dependencies]
windows-service = "0.7"