2024-04-14 23:29:34 +08:00
|
|
|
[package]
|
|
|
|
name = "easytier-gui"
|
2024-07-08 23:18:10 +08:00
|
|
|
version = "1.2.0"
|
2024-06-04 23:06:10 +08:00
|
|
|
description = "EasyTier GUI"
|
2024-04-14 23:29:34 +08:00
|
|
|
authors = ["you"]
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2024-07-15 00:03:55 +08:00
|
|
|
[lib]
|
|
|
|
name = "app_lib"
|
|
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
|
2024-04-14 23:29:34 +08:00
|
|
|
[build-dependencies]
|
2024-07-08 23:18:10 +08:00
|
|
|
tauri-build = { version = "2.0.0-beta", features = [] }
|
2024-04-14 23:29:34 +08:00
|
|
|
|
|
|
|
[dependencies]
|
2024-07-08 23:18:10 +08:00
|
|
|
tauri = { version = "2.0.0-beta", features = [ "tray-icon", "image-png", "image-ico"] }
|
|
|
|
|
2024-04-14 23:29:34 +08:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
serde_json = "1"
|
|
|
|
|
|
|
|
easytier = { path = "../../easytier" }
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
anyhow = "1.0"
|
|
|
|
chrono = { version = "0.4.37", features = ["serde"] }
|
|
|
|
|
|
|
|
once_cell = "1.18.0"
|
|
|
|
dashmap = "5.5.3"
|
|
|
|
|
|
|
|
privilege = "0.3"
|
2024-05-08 21:02:14 +08:00
|
|
|
gethostname = "0.4.3"
|
2024-06-04 23:06:10 +08:00
|
|
|
|
|
|
|
auto-launch = "0.5.0"
|
|
|
|
dunce = "1.0.4"
|
|
|
|
|
2024-07-08 23:18:10 +08:00
|
|
|
tauri-plugin-shell = "2.0.0-beta.8"
|
|
|
|
tauri-plugin-process = "2.0.0-beta.7"
|
|
|
|
tauri-plugin-clipboard-manager = "2.1.0-beta.5"
|
|
|
|
tauri-plugin-positioner = { version = "2.0.0-beta", features = ["tray-icon"] }
|
2024-07-15 00:03:55 +08:00
|
|
|
tauri-plugin-vpnservice = { path = "../../tauri-plugin-vpnservice" }
|
|
|
|
tauri-plugin-os = "2.0.0-beta.7"
|
2024-07-08 23:18:10 +08:00
|
|
|
|
2024-07-30 00:01:20 +08:00
|
|
|
|
2024-04-14 23:29:34 +08:00
|
|
|
[features]
|
|
|
|
# This feature is used for production builds or when a dev server is not specified, DO NOT REMOVE!!
|
|
|
|
custom-protocol = ["tauri/custom-protocol"]
|