23 lines
616 B
TOML
23 lines
616 B
TOML
[package]
|
|
name = "vpn-proxy-windows-client"
|
|
version = "0.1.0"
|
|
description = "Standalone Windows desktop proxy management app for VPN Proxy."
|
|
authors = ["VPN Proxy"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "vpn_proxy_windows_client_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tauri-plugin-dialog = "2.7.1"
|
|
base64 = "0.22"
|
|
reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls"] }
|
|
url = "2"
|